I have an issue with maven that keeps looking for springsource repos and consumes a lot of time trying to get through while the repos are unavailable :
[WARNING] The repository url 'http://repository.springsource.com/maven/bundles/release' is invalid - Repository 'com.springsource.repository.bundles.release' will be blacklisted.
[WARNING] The repository url 'http://repository.springsource.com/maven/bundles/external' is invalid - Repository 'com.springsource.repository.bundles.external' will be blacklisted.
My problem is that I don't understand why those repos are fetched as :
- I don't use any spring components
- None of the dependency arrtifacts seems to be fetched from those repos ( cheked with the dependency list from mvn site )
- The repos are not declared in any of my files
I've tried to blacklist the repos on our archiva and even in my local ~/.m2/settings.xml and even if the repos site show them as blacklisted, the error keeps up popping and consuming time.
I have the impression that this repo is fetched by the dependencies plugin as this occurs on site phase after the following log message :
[INFO] Generating "Dependencies" report --- maven-project-info-reports-plugin:2.6
And I also have a number of following errors preceding the repo errors :
...
[ERROR] Artifact: xerces:xml-apis:jar:2.11.0 has no file.
[ERROR] Artifact: xerces:xmlParserAPIs:jar:2.6.2 has no file.
[ERROR] Artifact: xml-apis:xml-apis:jar:1.3.02 has no file.
[ERROR] Artifact: xom:xom:jar:1.0 has no file.
...
Any idea on how to find the responsible (artifact or plugin) or to get rid of those errors are warmly welcomed.
Thanks for any clues
PS : I'm using maven 3.0.4 with JDK 1.7.0_04.