Added Jenkinsfile

This commit is contained in:
Victor Manea 2020-03-18 21:10:06 -04:00
parent 23b94ae5e0
commit f9c6f4e9d9

21
Jenkinsfile vendored
View file

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