Skip to content

Commit 02c6d33

Browse files
committed
Polishing.
See #4532
1 parent 92c00f9 commit 02c6d33

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Jenkinsfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pipeline {
8080
stage('Publish JDK (Java.next) + MongoDB 6.0') {
8181
when {
8282
anyOf {
83-
changeset "ci/openjdk20-mongodb-6.0/**"
83+
changeset "ci/openjdk21-mongodb-6.0/**"
8484
changeset "ci/pipeline.properties"
8585
}
8686
}
@@ -89,7 +89,7 @@ pipeline {
8989

9090
steps {
9191
script {
92-
def image = docker.build("springci/spring-data-with-mongodb-6.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.6.0.version']} ci/openjdk20-mongodb-6.0/")
92+
def image = docker.build("springci/spring-data-with-mongodb-6.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.6.0.version']} ci/openjdk21-mongodb-6.0/")
9393
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
9494
image.push()
9595
}
@@ -118,7 +118,7 @@ pipeline {
118118
stage('Publish JDK (Java.next) + MongoDB 7.0') {
119119
when {
120120
anyOf {
121-
changeset "ci/openjdk20-mongodb-7.0/**"
121+
changeset "ci/openjdk21-mongodb-7.0/**"
122122
changeset "ci/pipeline.properties"
123123
}
124124
}
@@ -127,7 +127,7 @@ pipeline {
127127

128128
steps {
129129
script {
130-
def image = docker.build("springci/spring-data-with-mongodb-7.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.7.0.version']} ci/openjdk20-mongodb-7.0/")
130+
def image = docker.build("springci/spring-data-with-mongodb-7.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.7.0.version']} ci/openjdk21-mongodb-7.0/")
131131
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
132132
image.push()
133133
}

0 commit comments

Comments
 (0)