added changes in jenkinsfile1

This commit is contained in:
sri 2024-03-28 18:02:28 +05:30
parent d3de65b072
commit e21341a847

View file

@ -2,7 +2,7 @@ pipeline {
agent{ label 'MAVEN' | 'JDK_17' } agent{ label 'MAVEN' | 'JDK_17' }
options { timeout(time: 30, unit: 'MINUTES') } options { timeout(time: 30, unit: 'MINUTES') }
triggers{ triggers{
pollSCM ( * * * * * ) pollSCM ('* * * * *')
} }
environment environment
{ {
@ -19,6 +19,5 @@ pipeline {
sh 'mvn clean package' sh 'mvn clean package'
} }
} }
} }
} }