com.ryandens.jlink-jib
Owner:
Ryan Dens
Modifies container images to use a minimal java runtime built with jlink.
Sources: https://github.com/ryandens/javaagent-gradle-plugin
Version 0.2.0
Created 02 December 2022.
Modifies container images to use a minimal java runtime built with jlink.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.ryandens.jlink-jib") version "0.2.0"
}
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("com.ryandens.jlink-jib:com.ryandens.jlink-jib.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.ryandens.jlink-jib") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ryandens.jlink-jib:com.ryandens.jlink-jib.gradle.plugin:0.2.0") } } apply(plugin = "com.ryandens.jlink-jib")
- Applying plugins to all subprojects .