spring-petclinic/Jenkinsfile
2025-06-11 12:25:08 +02:00

11 lines
No EOL
132 B
Groovy

pipeline {
agent any
stages {
stage('checkStyle') {
steps {
sh './gradlew checkstyleMain'
}
}
}
}