Search Gradle plugins

Version 0.3 (latest)

0.3

Created 22 November 2017.

Dynamically transform a Maven effective pom into Gradle scripts and more

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.lazan.maven-transform") version "0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.lazan:gradle-maven-transform:0.3")
      }
    }
    
    apply(plugin = "com.lazan.maven-transform")
  • Applying plugins to all subprojects .