org.jonnyzzz.java9c
Owner:
Eugene Petrenko
Checks runtime classpaths to detect same packages used in different classpath entries. Detects possible Java 9 modules migration problems
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"