com.bihe0832.gradleDependenciesCheck
Owner: 子勰
A plugin to check wherether the configuration of your gradle dependencies have conflicts or not!
https://github.com/bihe0832/Gradle-Dependencies-Check
Sources: https://github.com/bihe0832/Gradle-Dependencies-Check.git
Version 1.0.9 (latest)
1.0.9
Created 25 June 2019.
A plugin to check wherether the configuration of your gradle dependencies have conflicts or not!
Using the plugins DSL:
plugins {
id("com.bihe0832.gradleDependenciesCheck") version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.bihe0832:Gradle-Dependencies-Check-Plugin:1.0.9")
}
}
apply(plugin = "com.bihe0832.gradleDependenciesCheck")
Using the plugins DSL:
plugins {
id "com.bihe0832.gradleDependenciesCheck" version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.bihe0832:Gradle-Dependencies-Check-Plugin:1.0.9"
}
}
apply plugin: "com.bihe0832.gradleDependenciesCheck"