diff --git a/Jenkinsfile b/Jenkinsfile
index 467c11aa..b0ed95a0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -50,7 +50,7 @@ pipeline {
stage("Test other configurations") {
when {
beforeAgent(true)
- branch(pattern: "main|(\\d\\.\\d\\.x)", comparator: "REGEXP")
+ branch(pattern: "issue/spring-next-gen|main|(\\d\\.\\d\\.x)", comparator: "REGEXP")
}
parallel {
@@ -69,6 +69,36 @@ pipeline {
}
}
+ stage("Test: spring-next-gen (main)") {
+ agent any
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.basic']) {
+ sh "PROFILE=jakarta-ee-10,spring-next-gen,convergence ci/test.sh"
+ }
+ }
+ }
+ }
+
+ stage("Test: spring-next-gen-snapshot (main)") {
+ agent any
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.basic']) {
+ sh "PROFILE=jakarta-ee-10,spring-next-gen-snapshot,convergence ci/test.sh"
+ }
+ }
+ }
+ }
+
stage("Test: jakarta-ee-9 (main)") {
agent any
options { timeout(time: 30, unit: 'MINUTES')}
diff --git a/pom.xml b/pom.xml
index 27f881f3..e3018f1b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,9 +114,9 @@
2.0.1
2.0.6
4.3.5
- 6.0.10
+ 6.0.11
2.0.1
- 6.0.3
+ 6.0.5
2.0.1
2.0.1
6.5.1
@@ -295,8 +295,22 @@
spring-buildsnapshot
- 6.0.11-SNAPSHOT
- 6.0.4-SNAPSHOT
+ 6.0.12-SNAPSHOT
+ 6.0.6-SNAPSHOT
+
+
+
+ spring-next-gen
+
+ 6.1.0-M3
+ 6.2.0-M1
+
+
+
+ spring-next-gen-snapshot
+
+ 6.1.0-SNAPSHOT
+ 6.2.0-SNAPSHOT
diff --git a/smoke-tests/pom.xml b/smoke-tests/pom.xml
index d8da90dd..21082e31 100644
--- a/smoke-tests/pom.xml
+++ b/smoke-tests/pom.xml
@@ -6,7 +6,7 @@
org.springframework.boot
spring-boot-starter-parent
- 3.0.6
+ 3.1.2