Skip to content

Commit ef83581

Browse files
committed
1 parent 08fe76b commit ef83581

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ pipeline {
2020
stages {
2121
stage("Docker images") {
2222
parallel {
23-
stage('Publish JDK (Java 24) + MongoDB 8.0') {
23+
stage('Publish JDK (Java 25) + MongoDB 8.0') {
2424
when {
2525
anyOf {
26-
changeset "ci/openjdk24-mongodb-8.0/**"
26+
changeset "ci/openjdk25-mongodb-8.0/**"
2727
changeset "ci/pipeline.properties"
2828
}
2929
}
@@ -32,7 +32,7 @@ pipeline {
3232

3333
steps {
3434
script {
35-
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.main.tag']}", "--build-arg BASE=${p['docker.java.main.image']} --build-arg MONGODB=${p['docker.mongodb.7.0.version']} ci/openjdk24-mongodb-8.0/")
35+
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.main.tag']}", "--build-arg BASE=${p['docker.java.main.image']} --build-arg MONGODB=${p['docker.mongodb.7.0.version']} ci/openjdk25-mongodb-8.0/")
3636
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
3737
image.push()
3838
}
@@ -42,7 +42,7 @@ pipeline {
4242
stage('Publish JDK (Java.next) + MongoDB 8.0') {
4343
when {
4444
anyOf {
45-
changeset "ci/openjdk24-mongodb-8.0/**"
45+
changeset "ci/openjdk25-mongodb-8.0/**"
4646
changeset "ci/pipeline.properties"
4747
}
4848
}
@@ -51,7 +51,7 @@ pipeline {
5151

5252
steps {
5353
script {
54-
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk24-mongodb-8.0/")
54+
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk25-mongodb-8.0/")
5555
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
5656
image.push()
5757
}
File renamed without changes.

0 commit comments

Comments
 (0)