mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-24 12:21:12 +00:00
14 lines
No EOL
211 B
Groovy
14 lines
No EOL
211 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage("BuildCode"){
|
|
steps {
|
|
sh """
|
|
|
|
./mvnw package
|
|
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
} |