Update the Jenkins Files

This commit is contained in:
François 2020-03-13 23:05:15 -04:00
parent 61c088af8e
commit 30f351980b
2 changed files with 19 additions and 3 deletions

19
Jenkinsfile vendored
View file

@ -3,8 +3,23 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh 'mvn clean build'
} }
} }
stage('Test'){
steps {
sh 'mvn test'
}
}
stage('package'){
steps {
sh './mvnw package'
}
}
stage('deploy'){
steps {
echo 'deploying'
}
}
} }
} }

View file

@ -1 +1,2 @@
retry retry
changes