Upgrade to Spring Boot 2.2.0

This commit is contained in:
Stephane Nicoll
2019-10-16 11:31:07 +02:00
parent 8abd0a8d5c
commit a729fae5d3
7 changed files with 20 additions and 39 deletions

View File

@@ -17,10 +17,9 @@
<java.version>1.8</java.version>
<commons-compress.version>1.19</commons-compress.version>
<commons-text.version>1.7</commons-text.version>
<junit-jupiter.version>5.5.2</junit-jupiter.version>
<maven.version>3.6.1</maven.version>
<maven-resolver.version>1.3.3</maven-resolver.version>
<spring-boot.version>2.1.9.RELEASE</spring-boot.version>
<spring-boot.version>2.2.0.RELEASE</spring-boot.version>
<spring-cloud-contract.version>2.1.1.RELEASE</spring-cloud-contract.version>
</properties>
<scm>
@@ -56,13 +55,6 @@
<artifactId>maven-resolver-transport-http</artifactId>
<version>${maven-resolver.version}</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
@@ -70,6 +62,17 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-contract-dependencies</artifactId>