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.4.0
2.4.0
Created 18 January 2019.
A Gradle plugin that assembles your modules into a custom runtime image
Using the plugins DSL:
plugins {
id("org.beryx.jlink") version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.beryx:badass-jlink-plugin:2.4.0")
}
}
apply(plugin = "org.beryx.jlink")
Using the plugins DSL:
plugins {
id "org.beryx.jlink" version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.beryx:badass-jlink-plugin:2.4.0"
}
}
apply plugin: "org.beryx.jlink"