Search Gradle plugins

Version 1.10 (latest)

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"

Learn how to apply plugins to subprojects