我正在研究要与Jenkins 2.0一起使用的Jenkinsfile。无法识别readMavenPom
方法。我缺少一些配置以使其可用吗?
我的Jenkinsfile:
node {
stage 'Checkout'
checkout scm
env.PATH = "${tool 'maven-3'}/bin:${env.PATH}"
stage 'Build'
def pom = readMavenPom file: 'pom.xml'
echo "${pom}"
sh "mvn -DskipTests=true verify"
}
运行时,出现以下错误:
最佳答案
我需要安装pipeline-utility-steps
插件。
关于jenkins - 无法在Jenkinsfile中使用readMavenPom,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37197013/