web-dev-qa-db-fra.com

Impossible d'utiliser readMavenPom dans Jenkinsfile

Je travaille sur un fichier Jenkins à utiliser avec Jenkins 2.0. La méthode readMavenPom n'est pas reconnue. Y a-t-il une configuration qui me manque pour la rendre disponible?

Mon fichier Jenkins:

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"
}

Lors de l'exécution, j'obtiens l'erreur suivante:

Java.lang.NoSuchMethodError: No such DSL method 'readMavenPom' found among
[AWSEBDeployment, archive, bat, build, catchError, checkout, deleteDir, dir, echo,
emailext, error, fileExists, git, input, isUnix, load, mail, node, parallel,
properties, pwd, readFile, retry, sh, slackSend, sleep, stage, stash, step, svn,
timeout, tool, unarchive, unstash, waitUntil, withCredentials, withEnv, wrap,
writeFile, ws]
22
oillio

J'avais besoin d'installer le pipeline-utility-steps brancher.

60
oillio