Search Gradle plugins

A plugin that builds a Java platform based on a set of user-declared root dependencies

https://github.com/autonomousapps/platform-builder-gradle-plugin/

Sources: https://github.com/autonomousapps/platform-builder-gradle-plugin/

Version 0.3 (latest)

Created 25 September 2026.

A plugin that builds a Java platform based on a set of user-declared root dependencies

Gradle features compatibility:
Configuration cache ✓
(Incubating) Isolated Projects ?

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.autonomousapps.platform-builder") version "0.3"
}

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.autonomousapps.platform-builder:com.autonomousapps.platform-builder.gradle.plugin:0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.autonomousapps.platform-builder")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.autonomousapps.platform-builder:com.autonomousapps.platform-builder.gradle.plugin:0.3")
      }
    }
    
    apply(plugin = "com.autonomousapps.platform-builder")
  • Applying plugins to all subprojects .