I noticed that the maven build does not work, because a specific dependency cannot be loaded. In the build log, I get a lot of error messages like this:
WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '10c2aa7dfc8577cb32ee654d2cd5b270d478b823'; remote = '<!DOCTYPE' - RETRYING Downloading: http://maven.glassfish.org/content/groups/public//org/apache/maven/maven-archiver/2.0.1/maven-archiver-2.0.1.pom
If I check the URL that I am trying to extract from it, I see that this ineed resource seems to be broken. I guess this is what passes for 404 in Oracle-Land. It is strange that if I look at the parent directory I can see the entry for this missing file, but without the file size.
Obviously, something is wrong on the remote server. This causes all loaded artifacts to contain a load of HTML garbage. Deleting files and re-executing simply force the same set of garbage to load from Oracle.
The question is, how can I get around this? Unfortunately, this is a new project that I just extracted from the gloomy mists of time. None of my colleagues have components on their PCs, otherwise I would just copy them. Can I give maven a command to use some alternative source to get the missing jars?
source share