Search Gradle plugins

Version 0.6 (latest)

Created 29 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.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.iherasymenko.jlink:jlink-plugin:0.6")
  }
}

apply(plugin = "com.github.iherasymenko.jlink")

Using the plugins DSL:

plugins {
  id "com.github.iherasymenko.jlink" version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.iherasymenko.jlink:jlink-plugin:0.6"
  }
}

apply plugin: "com.github.iherasymenko.jlink"

Learn how to apply plugins to subprojects