Update Jenkinsfile

This commit is contained in:
Victor Manea 2020-03-18 21:54:12 -04:00 committed by GitHub
parent f9c6f4e9d9
commit 58b2f4c33d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
Jenkinsfile vendored
View file

@ -1,11 +1,30 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './mvnw package'
sh 'mvn clean'
}
}
stage('Build') {
steps {
sh 'mvn test'
}
}
stage('Build') {
steps {
sh 'mvn package'
}
}
stage('Build') {
steps {
sh 'mvn deploy'
}
}
}
}
}