ca.cutterslade.analyze
Owner: Michael Cramer
Dependency analysis plugin for gradle. This plugin attempts to replicate the functionality of the maven dependency plugin's analyze goals which fail the build if dependencies are declared but not used or used but not declared.
https://github.com/gradle-dependency-analyze/gradle-dependency-analyze
Sources: https://github.com/wfhartford/gradle-dependency-analyze
Version 1.9.0
1.9.0
Created 18 March 2022.
Dependency analysis plugin for gradle. This plugin attempts to replicate the functionality of the maven dependency plugin's analyze goals which fail the build if dependencies are declared but not used or used but not declared.
Add this plugin to your build using the plugins DSL:
plugins {
id("ca.cutterslade.analyze") version "1.9.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ca.cutterslade.gradle:gradle-dependency-analyze:1.9.0") } } apply(plugin = "ca.cutterslade.analyze")
- Applying plugins to all subprojects .