When I run the site
build of Apache Commons VFS2 the dependency-report plugin tries to fill a matrix, which artifact can be obtained by which repository.
In my case it also tries to inspect the maven.glassfish.org repository, which is AFAIK abandoned. But since it is still on some of the used dependency POMs, it is still showing up in my project (and I guess I cant influence that easily).
[INFO] Generating "Dependencies" report --- maven-project-info-reports-plugin:2.7
[ERROR] Unable to determine if resource asm:asm:jar:3.1:provided exists in http://maven.glassfish.org/content/groups/glassfish
...
This not only produces a lot of errors, it also takes time. Besides I would want to limit the columns in the report to the repositories which are relevant for this project.
I wonder, is there a way to make the plugin (and all of Maven) skip specific repositories? How would you blacklist them in my project POM?
The dependency:list-repositories
goal does not show this repo, but when I search through all cached POM files I see <id>glassfish-repository</id>
in com.sun.jersey:jersey-server:1.8
.
Choose one of these:
Remember, every extra repo defined in the pom impacts your build's performance, as Maven must check each repo for artifacts. It's not a big problem if you only have to add one repo... But the problem grows and next thing you know your maven build is checking 50 repos for every artifact and build time is a dog. See this email thread for more details about the impact.
Avoid these options
Every other option here is a hack and choosing any of these option will mean everyone else will need to make the same changes to fix the problem.