spring-petclinic/Jenkinsfile
2025-02-26 11:45:58 +01:00

16 lines
202 B
Groovy

pipeline {
agent any
tools {
maven 'M3'
}
stages {
stage('Build') {
steps {
echo 'Bulding'
checkout scm
sh 'mvn checkstyle:checkstyle'
}
}
}
}