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.1.4
2.1.4
Created 04 October 2024.
A plugin to report on the health of your JVM or Android build
Using the plugins DSL:
plugins {
id("com.autonomousapps.build-health") version "2.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.autonomousapps:dependency-analysis-gradle-plugin:2.1.4")
}
}
apply(plugin = "com.autonomousapps.build-health")
Using the plugins DSL:
plugins {
id "com.autonomousapps.build-health" version "2.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.autonomousapps:dependency-analysis-gradle-plugin:2.1.4"
}
}
apply plugin: "com.autonomousapps.build-health"