pipeline { agent { docker { image 'maven:3.8.6-openjdk-17-slim' } } stages { stage('build') { steps { sh 'mvn' } } } }