Closed
Description
When trying to build 3.0 locally, the pom download failed, because it used the unsafe default maven central url (probably due to using maven 2.0).
This should fix the pom download in build.xml, but there might be other places where the repo needs to be specified:
- <artifact:pom id="maven.deploy.pom" file="${maven.deploy.pom}"/>
+ <artifact:pom id="maven.deploy.pom" file="${maven.deploy.pom}">
+ <remoteRepository refid="mvn.maven-central.backup" />
+ </artifact:pom>