Create Jenskinsfile

This commit is contained in:
MHD Laith Awad 2020-03-16 08:08:41 -04:00 committed by GitHub
parent 5c35771a20
commit e35fea69f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenskinsfile Normal file
View file

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