Search Gradle plugins

Version 2.1.0

2.1.0

Created 23 September 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.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.autonomousapps:dependency-analysis-gradle-plugin:2.1.0")
  }
}

apply(plugin = "com.autonomousapps.build-health")

Using the plugins DSL:

plugins {
  id "com.autonomousapps.build-health" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.autonomousapps:dependency-analysis-gradle-plugin:2.1.0"
  }
}

apply plugin: "com.autonomousapps.build-health"

Learn how to apply plugins to subprojects