mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-02 19:30:23 +01:00
2e94fd4434
Closes gh-7978
38 lines
1.0 KiB
Groovy
38 lines
1.0 KiB
Groovy
buildscript {
|
|
ext {
|
|
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
|
|
}
|
|
repositories {
|
|
// NOTE: You should declare only repositories that you need here
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "http://repo.spring.io/release" }
|
|
maven { url "http://repo.spring.io/milestone" }
|
|
maven { url "http://repo.spring.io/snapshot" }
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
version = springBootVersion
|
|
|
|
repositories {
|
|
// NOTE: You should declare only repositories that you need here
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "http://repo.spring.io/release" }
|
|
maven { url "http://repo.spring.io/milestone" }
|
|
maven { url "http://repo.spring.io/snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
compile("org.springframework.boot:spring-boot-starter-web")
|
|
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
|
testCompile("org.springframework.boot:spring-boot-starter-test")
|
|
}
|