Search Gradle plugins

Version 2.0.2 (latest)

2.0.2

Created 14 August 2023.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-maven-plugin-builder:2.0.2")
      }
    }
    
    apply(plugin = "com.liferay.maven.plugin.builder")
  • Applying plugins to all subprojects .