net.idlestate.gradle-duplicate-classes-check
Owner: Thorsten Ehlers
A Gradle plugin that checks whether different artifacts in a configuration provide the same classes
https://github.com/tehlers/gradle-duplicate-classes-check
Sources: https://github.com/tehlers/gradle-duplicate-classes-check.git
Version 1.2.0 (latest)
Created 07 February 2023.
A Gradle plugin that checks whether different artifacts in a configuration provide the same classes
Add this plugin to your build using the plugins DSL:
plugins {
id("net.idlestate.gradle-duplicate-classes-check") version "1.2.0"
}
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("net.idlestate.gradle-duplicate-classes-check:net.idlestate.gradle-duplicate-classes-check.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.idlestate.gradle-duplicate-classes-check") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.idlestate.gradle-duplicate-classes-check:net.idlestate.gradle-duplicate-classes-check.gradle.plugin:1.2.0") } } apply(plugin = "net.idlestate.gradle-duplicate-classes-check")
- Applying plugins to all subprojects .