spring-petclinic/Jenkinsfile
2025-05-23 16:39:49 +05:30

13 lines
No EOL
158 B
Groovy

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