On Wed, Sep 24, 2014 at 6:24 PM, Etienne Jouvin <[email protected]> wrote: > I update my .m2/settings.xml with > > <server> > <id>java.net-m2-repository</id> > <username>ejouvin</username> > <password>...</password> > </server>
I do not think this repository even exists any more. > https://jenkins.ci.cloudbees.com/job/plugins/job/dependency-analyzer-plugin/ > > I do not understand why this job failed. You are using an ancient parent POM predating the Hudson/Jenkins split, and it does not support Java 7 (or newer); the earliest version that the CI builder will run is org.jenkins-ci.plugins:plugin:1.420, which does not offer Hudson compatibility. (1.424 is usually used as that is an LTS baseline.) If you do update your POM, you can delete pluginRepositories and distributionManagement as these are picked up from the parent. (<repositories> is still needed to bootstrap the parent POM itself.) To do releases your local settings should have a server with <id>maven.jenkins-ci.org</id>. If you want to continue using the older parent, just ignore the CI failures, and I cannot help you with the server information but maybe someone else knows. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" 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/d/optout.
