pipeline { agent any tools { maven 'Maven 3.9.7' jdk 'jdk21' } stages { stage('Build') { steps { sh 'mvn -B -DskipTests clean package' } } } }