com.autonomousapps.build-health
                  Owner:
                  
                    
                    Tony Robalik
                  
                
A plugin to report on the health of your JVM or Android build
https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin
Sources: https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin
Version 2.8.1
Created 07 February 2025.
                A plugin to report on the health of your JVM or Android build
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.autonomousapps.build-health") version "2.8.1"
}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("com.autonomousapps.build-health:com.autonomousapps.build-health.gradle.plugin:2.8.1") }It can then be applied in the precompiled script plugin:plugins { id("com.autonomousapps.build-health") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.autonomousapps.build-health:com.autonomousapps.build-health.gradle.plugin:2.8.1") } } apply(plugin = "com.autonomousapps.build-health")
- Applying plugins to all subprojects .