Search Gradle plugins

com.ryandens.jlink-application-run

Configures the run task to use the jlink java binary as its java launcher

https://www.ryandens.com

Sources: https://github.com/ryandens/javaagent-gradle-plugin

Version 0.4.1 (latest)

0.4.1

Created 16 September 2024.

Configures the run task to use the jlink java binary as its java launcher

Using the plugins DSL:

plugins {
  id("com.ryandens.jlink-application-run") version "0.4.1"
}

Using legacy plugin application:

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

apply(plugin = "com.ryandens.jlink-application-run")

Using the plugins DSL:

plugins {
  id "com.ryandens.jlink-application-run" version "0.4.1"
}

Using legacy plugin application:

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

apply plugin: "com.ryandens.jlink-application-run"

Learn how to apply plugins to subprojects