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.8

2.7.8

Created 19 January 2023.

Spring Boot Gradle Plugin

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:2.7.8")
      }
    }
    
    apply(plugin = "org.springframework.boot")
  • Applying plugins to all subprojects .