21 lines
455 B
Groovy
21 lines
455 B
Groovy
ext {
|
|
springBootVersion = '1.5.4.RELEASE'
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile("org.springframework.boot:spring-boot-starter:${springBootVersion}")
|
|
|
|
// adding javax.annotation since it's no longer included in Java 11
|
|
compile("javax.annotation:javax.annotation-api:1.3.2")
|
|
|
|
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
|
|
}
|
|
|