org.beryx.jlink
Owner: Serban Iordache
A Gradle plugin that assembles your modules into a custom runtime image
https://github.com/beryx/badass-jlink-plugin
Sources: https://github.com/beryx/badass-jlink-plugin
Version 2.21.4
2.21.4
Created 31 August 2020.
A Gradle plugin that assembles your modules into a custom runtime image
Using the plugins DSL:
plugins {
id("org.beryx.jlink") version "2.21.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.beryx:badass-jlink-plugin:2.21.4")
}
}
apply(plugin = "org.beryx.jlink")
Using the plugins DSL:
plugins {
id "org.beryx.jlink" version "2.21.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.beryx:badass-jlink-plugin:2.21.4"
}
}
apply plugin: "org.beryx.jlink"