de.acetous.dependency-compliance
Owner: Sebastian Herbermann
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 1.0.0-rc.2+532dda40
Created 05 July 2018.
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 "1.0.0-rc.2+532dda40"
}
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:1.0.0-rc.2+532dda40") }
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:1.0.0-rc.2+532dda40") } } apply(plugin = "de.acetous.dependency-compliance")
- Applying plugins to all subprojects .