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
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jonnyzzz.java9c") version "0.2.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.jonnyzzz.java9c:org.jonnyzzz.java9c.gradle.plugin:0.2.3") }
It can then be applied in the precompiled script plugin:plugins { id("org.jonnyzzz.java9c") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jonnyzzz.java9c:org.jonnyzzz.java9c.gradle.plugin:0.2.3") } } apply(plugin = "org.jonnyzzz.java9c")
- Applying plugins to all subprojects .