com.portingle.classpath-hell
Owner: John Lonergan
ClasspathHell Gradle Plugin detects duplicate resources on the classpath
https://github.com/portingle/classpathHell
Sources: https://github.com/portingle/classpathHell.git
Version 1.10 (latest)
1.10
Created 05 March 2024.
ClasspathHell Gradle Plugin detects duplicate resources on the classpath
Using the plugins DSL:
plugins {
id("com.portingle.classpath-hell") version "1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.portingle:classpath-hell:1.10")
}
}
apply(plugin = "com.portingle.classpath-hell")
Using the plugins DSL:
plugins {
id "com.portingle.classpath-hell" version "1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.portingle:classpath-hell:1.10"
}
}
apply plugin: "com.portingle.classpath-hell"