mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
Update Jenkinsfile
This commit is contained in:
parent
18de930bdb
commit
b870dab2d3
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -3,19 +3,19 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Building The project'
|
echo 'Building The project!'
|
||||||
bat './mvnw clean'
|
bat './mvnw clean'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Test'){
|
stage('Test'){
|
||||||
steps {
|
steps {
|
||||||
echo 'Running the test in the project'
|
echo 'Running the test in the project!'
|
||||||
bat './mvnw test'
|
bat './mvnw test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Package'){
|
stage('Package'){
|
||||||
steps{
|
steps{
|
||||||
echo 'Packaging stage has been executed'
|
echo 'Packaging stage has been executed!'
|
||||||
bat './mvnw package'
|
bat './mvnw package'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ pipeline {
|
||||||
branch 'master'
|
branch 'master'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Deploying stage has been executed'
|
echo 'Deploying stage has been executed!'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue