Search Gradle plugins

Version 1.2.6

Created 04 March 2020.

The Maven Plugin Builder Gradle Plugin lets you generate the Maven plugin descriptor for any Mojos found in your project.

Using the plugins DSL:

plugins {
  id("com.liferay.maven.plugin.builder") version "1.2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-maven-plugin-builder:1.2.6")
  }
}

apply(plugin = "com.liferay.maven.plugin.builder")

Using the plugins DSL:

plugins {
  id "com.liferay.maven.plugin.builder" version "1.2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-maven-plugin-builder:1.2.6"
  }
}

apply plugin: "com.liferay.maven.plugin.builder"

Learn how to apply plugins to subprojects