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 1.5
Created 19 November 2019.
                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 "1.5"
}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:1.5") }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:1.5") } } apply(plugin = "org.jboss.gm.analyzer")
- Applying plugins to all subprojects .