com.stehno.gradle.dependency-checker
Owner: Christopher J. Stehno
Gradle plugin to aid in managing dependencies.
http://cjstehno.github.io/dependency-checker/
Sources: https://github.com/cjstehno/dependency-checker
Version 0.2.3 (latest)
0.2.3
Created 19 January 2018.
Gradle plugin to aid in managing dependencies.
Using the plugins DSL:
plugins {
id("com.stehno.gradle.dependency-checker") version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stehno.gradle:dependency-checker:0.2.3")
}
}
apply(plugin = "com.stehno.gradle.dependency-checker")
Using the plugins DSL:
plugins {
id "com.stehno.gradle.dependency-checker" version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno.gradle:dependency-checker:0.2.3"
}
}
apply plugin: "com.stehno.gradle.dependency-checker"