#258 - Upgrade to Spring Boot 1.5.0.RELEASE.

This commit is contained in:
Oliver Gierke
2017-01-30 14:16:57 +01:00
parent 3d5a30510c
commit 6d76cb0aba
2 changed files with 8 additions and 1 deletions

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.0.BUILD-SNAPSHOT</version>
<version>1.5.0.RELEASE</version>
</parent>
<modules>

View File

@@ -24,6 +24,13 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<exclusions>
<!-- Boot 1.5 refers to that test scope dependency in compile scope -->
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test-support</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>