spring-petclinic/Jenkinsfile
2025-05-27 16:08:04 +05:30

15 lines
165 B
Groovy

pipeline {
agent any
stages {
stage ("Build") {
steps {
sh"./mvwn install"
}
}
}
}