modifed file

This commit is contained in:
barkath 2022-09-02 19:39:21 +05:30
parent cbc8b51112
commit 01ef84fda6

15
Jenkinsfile vendored
View file

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