Search Gradle plugins

org.beryx.jlink

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.beryx.jlink") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.beryx:badass-jlink-plugin:1.0.1")
      }
    }
    
    apply(plugin = "org.beryx.jlink")
  • Applying plugins to all subprojects .