Search Gradle plugins

Version 1.13.1-patch-1 (latest)

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:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.dua3.gradle.runtime:com.dua3.gradle.runtime.gradle.plugin:1.13.1-patch-1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.dua3.gradle.runtime")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.dua3.gradle.runtime:com.dua3.gradle.runtime.gradle.plugin:1.13.1-patch-1")
      }
    }
    
    apply(plugin = "com.dua3.gradle.runtime")
  • Applying plugins to all subprojects .