com.ryandens.jlink-jre
Owner: Ryan Dens
Creates a minimal java runtime using jlink
Sources: https://github.com/ryandens/javaagent-gradle-plugin
Version 0.4.1 (latest)
0.4.1
Created 16 September 2024.
Creates a minimal java runtime using jlink
Using the plugins DSL:
plugins {
id("com.ryandens.jlink-jre") version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ryandens:jlink-gradle:0.4.1")
}
}
apply(plugin = "com.ryandens.jlink-jre")
Using the plugins DSL:
plugins {
id "com.ryandens.jlink-jre" version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ryandens:jlink-gradle:0.4.1"
}
}
apply plugin: "com.ryandens.jlink-jre"