Skip to content

Commit ff0cd73

Browse files
authored
Upgrade to Spring Boot 1.5.4 (Netflix#155)
1 parent fb784b1 commit ff0cd73

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: java
22
sudo: required
33
dist: trusty
4+
group: deprecated-2017Q2
45
jdk:
56
- oraclejdk8
67
services:

gradle.properties

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
## Spring Dependency Versions
2020

2121
# Used in documentation and for including the Gradle plugin
22-
spring_boot_version=1.5.3.RELEASE
22+
spring_boot_version=1.5.4.RELEASE
2323
spring_cloud_version=Dalston.SR1
24-
spring_platform_version=Brussels-SR2
24+
spring_platform_version=Brussels-SR3
2525

2626
## Override Spring Platform IO Versions
2727

@@ -35,4 +35,6 @@ tomcat.version=8.0.22
3535

3636
hive_version=1.2.1
3737

38+
## Gradle Properties
39+
3840
org.gradle.parallel=true

metacat-functional-tests/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ task metacatPorts {
143143
}
144144

145145
task functionalTest(type: Test) {
146-
testClassesDir = sourceSets.functionalTest.output.classesDir
146+
testClassesDirs = sourceSets.functionalTest.output.classesDirs
147147
classpath = sourceSets.functionalTest.runtimeClasspath
148148
outputs.upToDateWhen { false }
149149

metacat-main/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
configurations {
2020
all*.exclude module: "jsr311-api"
21+
all*.exclude module: "slf4j-log4j12"
2122
}
2223

2324
dependencies {
@@ -73,6 +74,7 @@ dependencies {
7374
runtime("io.springfox:springfox-swagger-ui")
7475
runtime("org.webjars:hal-browser")
7576
runtime("org.springframework:spring-aspects")
77+
7678
/*******************************
7779
* Test Dependencies
7880
*******************************/

metacat-war/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ apply plugin: "war"
2020

2121
configurations {
2222
all*.exclude module: "jsr311-api"
23+
all*.exclude module: "slf4j-log4j12"
2324
}
2425

2526
dependencies {
@@ -42,6 +43,7 @@ dependencies {
4243
/*******************************
4344
* Runtime Dependencies
4445
*******************************/
46+
4547
runtime("org.springframework:spring-aspects")
4648

4749
/*******************************

0 commit comments

Comments
 (0)