44 lines
867 B
Groovy
44 lines
867 B
Groovy
buildscript {
|
|
ext {
|
|
springBootVersion = '1.5.6.RELEASE'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
ext {
|
|
springCloudVersion = 'Dalston.SR2'
|
|
}
|
|
|
|
dependencies {
|
|
compile('org.springframework.cloud:spring-cloud-starter-feign')
|
|
compile('org.springframework.boot:spring-boot-starter-hateoas')
|
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
|
|
}
|
|
}
|
|
|
|
bootRun{
|
|
jvmArgs = ["-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5006"]
|
|
}
|