Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
43 Zeilen
981 B
43 Zeilen
981 B
buildscript {
|
|
ext {
|
|
springBootVersion = '2.0.3.RELEASE'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
group = 'com.trgis'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
ext {
|
|
springCloudVersion = 'Finchley.RELEASE'
|
|
}
|
|
|
|
dependencies {
|
|
compile('org.springframework.cloud:spring-cloud-config-server')
|
|
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
|
|
compile('org.springframework.boot:spring-boot-starter-security')
|
|
compile('org.springframework.boot:spring-boot-actuator')
|
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
|
|
}
|
|
}
|
|
|