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 b5e37e8666
commit 3ad125d7ea

View File

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