Search Gradle plugins

Version 2025.07 (latest)

Created 21 June 2025.

springboot root plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.shuigedeng.root") version "2025.07"
}

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