|
@@ -1,8 +1,7 @@
|
|
|
buildscript {
|
|
|
ext {
|
|
|
kotlin_version = '1.3.10'
|
|
|
- springBootVersion = '2.0.1.RELEASE'
|
|
|
- springCloudVersion = 'Finchley.SR1'
|
|
|
+ springBootVersion = '2.1.4.RELEASE'
|
|
|
junit_version = '4.12'
|
|
|
commons_io_version = '2.5'
|
|
|
commons_lang3_version = '3.5'
|
|
@@ -16,7 +15,6 @@ buildscript {
|
|
|
authVersion='1.2'
|
|
|
shiro_version = '1.4.0'
|
|
|
swagger_version = '2.7.0'
|
|
|
- springBootAdminVersion='2.0.1'
|
|
|
}
|
|
|
repositories {
|
|
|
mavenCentral()
|
|
@@ -50,6 +48,12 @@ subprojects {
|
|
|
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
|
|
|
compileJava.dependsOn(processResources)
|
|
|
|
|
|
+
|
|
|
+ ext{
|
|
|
+ set('springCloudVersion','Greenwich.SR1')
|
|
|
+ set('springBootAdminVersion', '2.1.4')
|
|
|
+ }
|
|
|
+
|
|
|
repositories {
|
|
|
mavenCentral()
|
|
|
jcenter()
|
|
@@ -64,7 +68,8 @@ subprojects {
|
|
|
|
|
|
dependencyManagement {
|
|
|
imports {
|
|
|
- mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR1'
|
|
|
+ mavenBom "de.codecentric:spring-boot-admin-dependencies:${springBootAdminVersion}"
|
|
|
+ mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -84,6 +89,7 @@ subprojects {
|
|
|
compile('org.springframework.boot:spring-boot-starter-web')
|
|
|
|
|
|
compile('org.springframework.cloud:spring-cloud-config-server')
|
|
|
+ compile('org.springframework.cloud:spring-cloud-config-monitor')
|
|
|
compile('org.springframework.boot:spring-boot-starter-jetty')
|
|
|
compile('org.springframework.boot:spring-boot-starter-jdbc')
|
|
|
compile('org.springframework.boot:spring-boot-starter-cache')
|