Search Gradle plugins

org.springframework.boot

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.6.RELEASE")
  }
}

apply(plugin = "org.springframework.boot")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.springframework.boot:spring-boot-gradle-plugin:2.0.6.RELEASE"
  }
}

apply plugin: "org.springframework.boot"

Learn how to apply plugins to subprojects