mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 19:07:28 +00:00
14 lines
No EOL
274 B
Groovy
14 lines
No EOL
274 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage("BuildCode"){
|
|
steps {
|
|
sh """
|
|
cd spring-petclinic
|
|
./mvnw package
|
|
java -jar target/*.jar
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
} |