nl.leeuwit.gradle.jpms
Owner:
Gerard de Leeuw
A Gradle plugin that adds useful tasks to support the Java Platform Module System
https://github.com/lion7/gradle-jpms-plugin
Sources: https://github.com/lion7/gradle-jpms-plugin
Version 0.0.8 (latest)
Created 17 August 2021.
A Gradle plugin that adds support for the Java Platform Module System
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.leeuwit.gradle.jpms") version "0.0.8"
}
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("nl.leeuwit.gradle.jpms:nl.leeuwit.gradle.jpms.gradle.plugin:0.0.8") }
It can then be applied in the precompiled script plugin:plugins { id("nl.leeuwit.gradle.jpms") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.leeuwit.gradle.jpms:nl.leeuwit.gradle.jpms.gradle.plugin:0.0.8") } } apply(plugin = "nl.leeuwit.gradle.jpms")
- Applying plugins to all subprojects .