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