Search Gradle plugins

org.jonnyzzz.java9c

Checks runtime classpaths to detect same packages used in different classpath entries. Detects possible Java 9 modules migration problems

https://jonnyzzz.com

Sources: https://github.com/jonnyzzz/gradle-java9c

Version 0.2.3 (latest)

Created 12 March 2018.

Checks runtime classpaths to detect same packages used in different classpath entries. Detects Java 9 modules migration problems aka split packages

Using the plugins DSL:

plugins {
  id("org.jonnyzzz.java9c") version "0.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.gradle-java9-collision:plugin:0.2.3")
  }
}

apply(plugin = "org.jonnyzzz.java9c")

Using the plugins DSL:

plugins {
  id "org.jonnyzzz.java9c" version "0.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.gradle-java9-collision:plugin:0.2.3"
  }
}

apply plugin: "org.jonnyzzz.java9c"

Learn how to apply plugins to subprojects