Fixing the No such DSL method Error in Jenkins Pipeline (#13223)

This commit is contained in:
Kapil Khandelwal 2023-01-03 01:31:12 +05:30 committed by GitHub
parent 111532dc4a
commit 306949719b
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
mvn 'clean install'
}
}
}
}