Add files via upload

This commit is contained in:
Neeham Khalid 2020-03-12 11:09:19 -04:00 committed by GitHub
parent ec9b3318f7
commit 0a59b382a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
Jenkinsfile vendored Normal file
View file

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