Search Gradle plugins

Version 1.2.2

Created 16 November 2018.

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.2"
}

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.2")
  }
}

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

Using the plugins DSL:

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

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.2"
  }
}

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

Learn how to apply plugins to subprojects