Added Jenkinsfile

This commit is contained in:
Sanjeev435 2018-08-18 19:47:41 +05:30 committed by GitHub
parent 60105d5d9a
commit 26ae376e76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,17 @@
#!groovy
pipeline {
agent none
stages {
stage('Maven Install') {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
sh 'mvn clean install'
}
}
}
}