18 lines
408 B
Groovy
18 lines
408 B
Groovy
ext {
|
|
springBootVersion = '1.5.4.RELEASE'
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile("org.springframework.boot:spring-boot-starter-security:${springBootVersion}")
|
|
compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
|
|
testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
|
|
}
|
|
|