Added Jenkins file

This commit is contained in:
Sreenivasa Manthena 2023-03-30 18:44:49 +05:30
parent da3ad0f844
commit c9beb9fc5a

16
Jenkinsfile vendored Normal file
View file

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