Search Gradle plugins

de.acetous.dependency-compliance

A Gradle plugin to check and track dependencies in your project. Useful for meeting compliance targets, including 3rd-party libraries.

https://github.com/acetous/gradle-require-dependency-compliance

Sources: https://github.com/acetous/gradle-require-dependency-compliance.git

Version 2.1.2 (latest)

Created 24 February 2021.

A Gradle plugin to check and track dependencies in your project. Useful for meeting compliance targets, including 3rd-party libraries.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.acetous.dependency-compliance") version "2.1.2"
}

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("de.acetous.dependency-compliance:de.acetous.dependency-compliance.gradle.plugin:2.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.acetous.dependency-compliance")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.acetous.dependency-compliance:de.acetous.dependency-compliance.gradle.plugin:2.1.2")
      }
    }
    
    apply(plugin = "de.acetous.dependency-compliance")
  • Applying plugins to all subprojects .