spring-petclinic/Jenkinsfile
2025-05-23 20:01:41 +05:30

20 lines
285 B
Groovy

pipeline {
agent any
stages {
stage ("Build"){
steps {
sh "./mvnw install"
}
}
stage ("Run unit-test"){
steps {
sh "./mvnw test"
}
}
}
}