added jenkinsfile

This commit is contained in:
barkath 2022-08-30 20:29:44 +05:30
parent b4b7df50b4
commit c3d93c209e

15
jenkinsfile Normal file
View file

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