Search Gradle plugins

Version 1.9

Created 25 September 2023.

ClasspathHell Gradle Plugin detects duplicate resources on the classpath

Using the plugins DSL:

plugins {
  id("com.portingle.classpath-hell") version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.portingle:classpath-hell:1.9")
  }
}

apply(plugin = "com.portingle.classpath-hell")

Using the plugins DSL:

plugins {
  id "com.portingle.classpath-hell" version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.portingle:classpath-hell:1.9"
  }
}

apply plugin: "com.portingle.classpath-hell"

Learn how to apply plugins to subprojects