41 lines
830 B
Groovy
41 lines
830 B
Groovy
|
buildscript {
|
||
|
ext {
|
||
|
springBootVersion = '1.5.2.RELEASE'
|
||
|
}
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||
|
classpath('io.spring.gradle:dependency-management-plugin:0.5.4.RELEASE')
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'eclipse'
|
||
|
apply plugin: 'org.springframework.boot'
|
||
|
apply plugin: 'io.spring.dependency-management'
|
||
|
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
compile('org.springframework.boot:spring-boot-starter')
|
||
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||
|
compile('org.springframework.cloud:spring-cloud-config-server')
|
||
|
|
||
|
}
|
||
|
|
||
|
dependencyManagement {
|
||
|
imports {
|
||
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:Camden.SR5"
|
||
|
}
|
||
|
}
|
||
|
|