Search Gradle plugins

Version 3.20 (latest)

Created 04 October 2024.

Plugin that that generates alignment metadata at ${project.rootDir}/manipulation.json

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jboss.gm.analyzer") version "3.20"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.jboss.gm.analyzer:org.jboss.gm.analyzer.gradle.plugin:3.20")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jboss.gm.analyzer")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jboss.gm.analyzer:org.jboss.gm.analyzer.gradle.plugin:3.20")
      }
    }
    
    apply(plugin = "org.jboss.gm.analyzer")
  • Applying plugins to all subprojects .