org.gradle.java.experimental-jigsaw
Experiment with Java 9 modules before they are officially supported.
https://guides.gradle.org/building-java-9-modules
Sources: https://github.com/gradle/gradle-java-modules
Version 0.1.1 (latest)
Created 22 June 2017.
Experiment with Java 9 modules before they are officially supported.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gradle.java.experimental-jigsaw") version "0.1.1"
}
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.gradle.java.experimental-jigsaw:org.gradle.java.experimental-jigsaw.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.gradle.java.experimental-jigsaw") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.java.experimental-jigsaw:org.gradle.java.experimental-jigsaw.gradle.plugin:0.1.1") } } apply(plugin = "org.gradle.java.experimental-jigsaw")
- Applying plugins to all subprojects .