Jenkinsfile

added new jenkins file
This commit is contained in:
rcbrangu08 2020-02-27 16:56:24 +05:30 committed by GitHub
parent ac3e64208e
commit 152746b756
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline{
agent any
stages{
stage("build"){
steps{
mvn package
}
}
}
}