Added Jenkinsfile

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

19
Jenkinsfile vendored
View file

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