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

15
Jenkinsfile vendored
View file

@ -2,9 +2,24 @@ pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps {
sh 'mvn clean build'
}
}
stage('Test'){
steps {
sh 'mvn test'
}
}
stage('package'){
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
} }
stage('deploy'){
steps {
echo 'deploying'
}
}
} }
} }

View file

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