Build a new release container.

Having upgraded release tools to maven 3.9.1, we need a new container.
This commit is contained in:
Greg L. Turnquist
2023-04-14 10:57:00 -05:00
parent ce8499264c
commit 6c1a8356ef
2 changed files with 3 additions and 6 deletions

8
Jenkinsfile vendored
View File

@@ -15,17 +15,13 @@ pipeline {
stages {
stage('Build the Spring Data release tools container') {
when {
changeset 'ci/Dockerfile'
}
agent {
label 'data'
}
steps {
script {
def image = docker.build("springci/spring-data-release-tools:0.8", "ci")
def image = docker.build("springci/spring-data-release-tools:0.9", "ci")
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
image.push()
}
@@ -39,7 +35,7 @@ pipeline {
}
agent {
docker {
image 'springci/spring-data-release-tools:0.8'
image 'springci/spring-data-release-tools:0.9'
}
}
options { timeout(time: 4, unit: 'HOURS') }

View File

@@ -1,3 +1,4 @@
# Tool requirements
jdks=17.0.6,8.0.352,8.0.362
maven=3.9.1