Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dua3.gradle.runtime") version "1.13.1-patch-1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.dua3.gradle:badass-runtime-plugin:1.13.1-patch-1")
      }
    }
    
    apply(plugin = "com.dua3.gradle.runtime")
  • Applying plugins to all subprojects .