mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-24 04:11:11 +00:00
13 lines
No EOL
158 B
Groovy
13 lines
No EOL
158 B
Groovy
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage ("Build"){
|
|
steps {
|
|
sh "./mvnw install"
|
|
}
|
|
}
|
|
}
|
|
} |