Search Gradle plugins

Version 0.3 (latest)

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"

Learn how to apply plugins to subprojects