spring-petclinic/Jenkinsfile

16 lines
221 B
Text
Raw Normal View History

2025-02-26 10:36:50 +00:00
pipeline {
2025-02-27 08:36:21 +00:00
agent {
docker { image 'maven:3.8.5-openjdk-17' }
2025-02-26 10:45:58 +00:00
}
2025-02-27 08:36:21 +00:00
2025-02-26 10:36:50 +00:00
stages {
stage('Build') {
steps {
echo 'Bulding'
2025-02-26 10:45:58 +00:00
checkout scm
sh 'mvn checkstyle:checkstyle'
2025-02-26 10:36:50 +00:00
}
}
}
}