Upgrade to Spring Boot 2.7.5.

Drop testing against Spring WS 3.2. Ensure tests are run against Spring Boot's default version as well as Spring WS 3.1.4.
This commit is contained in:
Greg L. Turnquist
2022-11-17 16:11:02 -06:00
parent ad78948062
commit 778a6833cd
2 changed files with 7 additions and 7 deletions

4
Jenkinsfile vendored
View File

@@ -43,7 +43,7 @@ pipeline {
} }
} }
stage("Test: spring-ws-3.2") { stage("Test: spring-ws-3.1.4") {
agent { agent {
docker { docker {
image 'adoptopenjdk/openjdk8:latest' image 'adoptopenjdk/openjdk8:latest'
@@ -54,7 +54,7 @@ pipeline {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c') ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
} }
steps { steps {
sh "PROFILES=spring-ws-3.2 ci/test.sh" sh "PROFILES=spring-ws-3.1.4 ci/test.sh"
} }
} }
} }

10
pom.xml
View File

@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.4</version> <version>2.7.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
@@ -59,15 +59,15 @@
<profiles> <profiles>
<profile> <profile>
<id>spring-ws-3.1-snapshots</id> <id>spring-ws-3.1.4</id>
<properties> <properties>
<spring-ws.version>3.1.4-SNAPSHOT</spring-ws.version> <spring-ws.version>3.1.4</spring-ws.version>
</properties> </properties>
</profile> </profile>
<profile> <profile>
<id>spring-ws-3.2</id> <id>spring-ws-3.1-snapshots</id>
<properties> <properties>
<spring-ws.version>3.2.0-SNAPSHOT</spring-ws.version> <spring-ws.version>3.1.4-SNAPSHOT</spring-ws.version>
</properties> </properties>
</profile> </profile>
</profiles> </profiles>