1 2 3 4 5 6 7 8 9 10
pipeline { agent { docker { image 'maven:3.8.6-openjdk-17-slim' } } stages { stage('build') { steps { sh 'mvn' } } } }