mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-05 13:51:12 +00:00
15 lines
No EOL
263 B
Groovy
15 lines
No EOL
263 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage("BuildCode"){
|
|
steps {
|
|
sh """
|
|
cd spring-petclinic
|
|
./mvnw package
|
|
java -jar target/*.jar
|
|
"""
|
|
}
|
|
|
|
}
|
|
}
|
|
} |