Added Jenkinsfile

This commit is contained in:
joeyabou 2020-03-15 17:22:53 -04:00
parent 933bb9a73b
commit ad5d23622e

4
Jenkinsfile vendored
View file

@ -3,7 +3,7 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh './mvnw compile'
} }
} }
@ -22,7 +22,7 @@ pipeline {
stage('deploy') { stage('deploy') {
steps { steps {
sh './mvn deploy' sh 'echo "Sucessfully Deployed"'
} }
} }