Search Gradle plugins

ca.cutterslade.analyze

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.5.2

1.5.2

Created 12 March 2021.

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.5.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ca.cutterslade.gradle:gradle-dependency-analyze:1.5.2")
      }
    }
    
    apply(plugin = "ca.cutterslade.analyze")
  • Applying plugins to all subprojects .