Skip to content

Commit

Permalink
Use same maven in tutorial as is used elsewhere (#5857)
Browse files Browse the repository at this point in the history
The hello world tutorial was using a different maven container than the
other locations in the documentation.  Use the same maven container in
this location as is used in the other locations.
  • Loading branch information
MarkEWaite committed Dec 31, 2022
1 parent 3467536 commit 5fe6afa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/doc/pipeline/tour/hello-world.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ various languages.
// Declarative //
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'maven:3.8.6-openjdk-11-slim' } }
agent { docker { image 'maven:3.8.6-eclipse-temurin-11' } }
stages {
stage('build') {
steps {
Expand All @@ -69,7 +69,7 @@ pipeline {
/* Requires the Docker Pipeline plugin */
node {
stage('Build') {
docker.image('maven:3.8.6-openjdk-11-slim').inside {
docker.image('maven:3.8.6-eclipse-temurin-11').inside {
sh 'mvn --version'
}
}
Expand Down

0 comments on commit 5fe6afa

Please sign in to comment.