Update Jenkinsfile

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

14
Jenkinsfile vendored
View file

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