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 1.5.15.RELEASE
1.5.15.RELEASE
Created 30 July 2018.
No version description available.
Using the plugins DSL:
plugins {
id("org.springframework.boot") version "1.5.15.RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.15.RELEASE")
}
}
apply(plugin = "org.springframework.boot")
Using the plugins DSL:
plugins {
id "org.springframework.boot" version "1.5.15.RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.15.RELEASE"
}
}
apply plugin: "org.springframework.boot"