org.beryx.runtime
Owner: Serban Iordache
A Gradle plugin that assembles your modules into a custom runtime image
https://github.com/beryx/badass-runtime-plugin/
Sources: https://github.com/beryx/badass-runtime-plugin
Version 1.13.1 (latest)
1.13.1
Created 21 February 2024.
A Gradle plugin that assembles your modules into a custom runtime image
Using the plugins DSL:
plugins {
id("org.beryx.runtime") version "1.13.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.beryx:badass-runtime-plugin:1.13.1")
}
}
apply(plugin = "org.beryx.runtime")
Using the plugins DSL:
plugins {
id "org.beryx.runtime" version "1.13.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.beryx:badass-runtime-plugin:1.13.1"
}
}
apply plugin: "org.beryx.runtime"