mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
edit to jenkins file
This commit is contained in:
parent
5873eb7011
commit
f1012b277e
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -7,17 +7,17 @@ pipeline {
|
|||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh './mvnw clean compile'
|
||||
sh 'mvn clean compile'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh './mvnw test'
|
||||
sh 'mvn test'
|
||||
}
|
||||
}
|
||||
stage('Package') {
|
||||
steps {
|
||||
sh './mvnw package'
|
||||
sh 'mvn package'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ pipeline {
|
|||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
sh './mvnw deploy'
|
||||
sh 'mvn deploy'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue