On Sun, 14 Jul 2013 12:07:25 +0200, Jean-Louis Boudart <[email protected]> wrote:

[FATAL] Non-resolvable parent POM: Failure to find
org.jenkins-ci.plugins:plugin:pom:1.456 in
https://repository-jenkins.forge.cloudbees.com/release was cached in
the local repository, resolution will not be reattempted until the
update interval of cloudbees-private-release-repository has elapsed or
updates are forced and 'parent.relativePath' points at wrong local POM
@ line 5, column 13

The pom.xml does not reference http://repo.jenkins-ci.org/public/ repository. Such as in https://github.com/jenkinsci/pmd-plugin/blob/master/pom.xml.

Adding this should fix it
===
  <repositories>
    <repository>
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
    </repository>
  </repositories>

  <pluginRepositories>
    <pluginRepository>
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
    </pluginRepository>
  </pluginRepositories>
===

--
oliver

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to