11 lines
241 B
Groovy
11 lines
241 B
Groovy
|
buildscript {
|
||
|
ext {
|
||
|
springBootVersion = '1.5.2.RELEASE'
|
||
|
}
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||
|
}
|
||
|
}
|