mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-22 11:21:12 +00:00
15 lines
165 B
Groovy
15 lines
165 B
Groovy
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage ("Build") {
|
|
steps {
|
|
sh"./mvwn install"
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|