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 { pipeline {
agent none agent none
stages { stages {
stage('Maven Install') { stage('Maven Install') {
agent { agent {
docker any { docker {
image 'maven:3.5.0' image 'maven:3.5.0'
} }
} }
steps { steps {
sh 'mvn clean install' sh 'mvn clean install'
} }
} }