Added Jenkinsfile

This commit is contained in:
narrapangan 2020-03-16 01:02:35 -04:00
parent caac375f33
commit bd1f2c7b57

17
Jenkinsfile vendored
View file

@ -1,10 +1,11 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
} }
}
}
} }