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.0.6.RELEASE

Created 16 October 2018.

No version description available.

Add this plugin to your build using the plugins DSL:

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

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.0.6.RELEASE")
    }
    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.0.6.RELEASE")
      }
    }
    
    apply(plugin = "org.springframework.boot")
  • Applying plugins to all subprojects .