spring-petclinic/Jenkinsfile

17 lines
202 B
Text
Raw Normal View History

2025-02-26 10:36:50 +00:00
pipeline {
agent any
2025-02-26 10:45:58 +00:00
tools {
maven 'M3'
}
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
}
}
}
}