com.github.iherasymenko.jlink
Owner: Ihor Herasymenko
This plugins adds jlink integration to your Gradle builds. As simple as that.
https://github.com/iherasymenko/jlink-gradle-plugin
Sources: https://github.com/iherasymenko/jlink-gradle-plugin
Version 0.5
0.5
Created 21 November 2023.
This plugins adds jlink integration to your Gradle builds. As simple as that.
Using the plugins DSL:
plugins {
id("com.github.iherasymenko.jlink") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.iherasymenko.jlink:jlink-plugin:0.5")
}
}
apply(plugin = "com.github.iherasymenko.jlink")
Using the plugins DSL:
plugins {
id "com.github.iherasymenko.jlink" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.iherasymenko.jlink:jlink-plugin:0.5"
}
}
apply plugin: "com.github.iherasymenko.jlink"