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.3.0
1.3.0
Created 09 August 2019.
A Gradle plugin that assembles your modules into a custom runtime image
Using the plugins DSL:
plugins {
id("org.beryx.runtime") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.beryx:badass-runtime-plugin:1.3.0")
}
}
apply(plugin = "org.beryx.runtime")
Using the plugins DSL:
plugins {
id "org.beryx.runtime" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.beryx:badass-runtime-plugin:1.3.0"
}
}
apply plugin: "org.beryx.runtime"