org.jboss.gm.analyzer
                  Owner:
                  
                    
                    Nick Cross
                  
                
Plugin that that generates alignment metadata at ${project.rootDir}/manipulation.json
https://project-ncl.github.io/gradle-manipulator
Sources: https://github.com/project-ncl/gradle-manipulator/tree/master/analyzer
Version 3.6
Created 01 July 2022.
                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.6"
}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.6") }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.6") } } apply(plugin = "org.jboss.gm.analyzer")
- Applying plugins to all subprojects .