uk.co.jmsoft.gradlejava9runtimeimageplugin
Owner: John Marshall
This plugin expands Gradles built in Java Application plugin by adding tasks to link and launch a Java9+ custom runtime image.
https://gitlab.com/ScoobyDooby/gradle-java9-custom-runtime-image-plugin
Sources: https://gitlab.com/ScoobyDooby/gradle-java9-custom-runtime-image-plugin
Version 1.0-SNAPSHOT (latest)
Created 11 August 2019.
This plugin expands Gradles built in
Java Application plugin by adding tasks to link and launch a Java9+
custom runtime image.
Add this plugin to your build using the plugins DSL:
plugins {
id("uk.co.jmsoft.gradlejava9runtimeimageplugin") version "1.0-SNAPSHOT"
}
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("uk.co.jmsoft.gradlejava9runtimeimageplugin:uk.co.jmsoft.gradlejava9runtimeimageplugin.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("uk.co.jmsoft.gradlejava9runtimeimageplugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("uk.co.jmsoft.gradlejava9runtimeimageplugin:uk.co.jmsoft.gradlejava9runtimeimageplugin.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "uk.co.jmsoft.gradlejava9runtimeimageplugin")
- Applying plugins to all subprojects .