com.lazan.maven-transform
Owner: Lance Java
Dynamically transform a Maven effective pom into Gradle scripts and more
https://github.com/uklance/gradle-maven-transform
Sources: https://github.com/uklance/gradle-maven-transform.git
Version 0.3 (latest)
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:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.lazan.maven-transform:com.lazan.maven-transform.gradle.plugin:0.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.lazan.maven-transform") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.lazan.maven-transform:com.lazan.maven-transform.gradle.plugin:0.3") } } apply(plugin = "com.lazan.maven-transform")
- Applying plugins to all subprojects .