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)
Created 25 June 2019.
A plugin to check wherether the configuration of your gradle dependencies have conflicts or not!
Add this plugin to your build using the plugins DSL:
plugins {
id("com.bihe0832.gradleDependenciesCheck") version "1.0.9"
}
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("com.bihe0832.gradleDependenciesCheck:com.bihe0832.gradleDependenciesCheck.gradle.plugin:1.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.bihe0832.gradleDependenciesCheck") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.bihe0832.gradleDependenciesCheck:com.bihe0832.gradleDependenciesCheck.gradle.plugin:1.0.9") } } apply(plugin = "com.bihe0832.gradleDependenciesCheck")
- Applying plugins to all subprojects .