spring-petclinic/Jenkinsfile
2025-02-27 09:36:21 +01:00

15 lines
221 B
Groovy

pipeline {
agent {
docker { image 'maven:3.8.5-openjdk-17' }
}
stages {
stage('Build') {
steps {
echo 'Bulding'
checkout scm
sh 'mvn checkstyle:checkstyle'
}
}
}
}