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