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:
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@@ -43,7 +43,7 @@ pipeline {
|
||||
}
|
||||
}
|
||||
|
||||
stage("Test: spring-ws-3.2") {
|
||||
stage("Test: spring-ws-3.1.4") {
|
||||
agent {
|
||||
docker {
|
||||
image 'adoptopenjdk/openjdk8:latest'
|
||||
@@ -54,7 +54,7 @@ pipeline {
|
||||
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
|
||||
}
|
||||
steps {
|
||||
sh "PROFILES=spring-ws-3.2 ci/test.sh"
|
||||
sh "PROFILES=spring-ws-3.1.4 ci/test.sh"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
10
pom.xml
10
pom.xml
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.7.4</version>
|
||||
<version>2.7.5</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
@@ -59,15 +59,15 @@
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>spring-ws-3.1-snapshots</id>
|
||||
<id>spring-ws-3.1.4</id>
|
||||
<properties>
|
||||
<spring-ws.version>3.1.4-SNAPSHOT</spring-ws.version>
|
||||
<spring-ws.version>3.1.4</spring-ws.version>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>spring-ws-3.2</id>
|
||||
<id>spring-ws-3.1-snapshots</id>
|
||||
<properties>
|
||||
<spring-ws.version>3.2.0-SNAPSHOT</spring-ws.version>
|
||||
<spring-ws.version>3.1.4-SNAPSHOT</spring-ws.version>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
Reference in New Issue
Block a user