Search Gradle plugins

org.springframework.boot

Owner: Spring

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that can you can "just run". We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration.

https://spring.io/projects/spring-boot

Version 2.7.5

Created 20 October 2022.

Spring Boot Gradle Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.springframework.boot") version "2.7.5"
}

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