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)
0.3
Created 22 November 2017.
Dynamically transform a Maven effective pom into Gradle scripts and more
Using the plugins DSL:
plugins {
id("com.lazan.maven-transform") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.lazan:gradle-maven-transform:0.3")
}
}
apply(plugin = "com.lazan.maven-transform")
Using the plugins DSL:
plugins {
id "com.lazan.maven-transform" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.lazan:gradle-maven-transform:0.3"
}
}
apply plugin: "com.lazan.maven-transform"