Search Gradle plugins

Version 0.2.0

Created 02 December 2022.

Creates a minimal java runtime using jlink

Using the plugins DSL:

plugins {
  id("com.ryandens.jlink-jre") version "0.2.0"
}

Using legacy plugin application:

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

apply(plugin = "com.ryandens.jlink-jre")

Using the plugins DSL:

plugins {
  id "com.ryandens.jlink-jre" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ryandens:jlink-gradle:0.2.0"
  }
}

apply plugin: "com.ryandens.jlink-jre"

Learn how to apply plugins to subprojects