I've noticed that a maven build is failing because a particular dependancy cannot be downloaded. 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 inspect the URL it's trying to fetch from, I can see that this resource does ineed seem to be broken. I guess this is what passes for a 404 in Oracle-Land. The odd thing is that if I look at the parent directory I can see an entry for that missing file, but with no file-size.
Clearly something is wrong in the remote server. That's causing all my downloaded artifacts to contain a load of HTML junk. Deleting the files and re-running just causes the exact same set of garbage to be downloaded from Oracle.
The question is - how can I work around this problem? Unfortunately this is a new project that I've just dredged up from the murky mists of time. None of my colleagues have the components on their PCs, otherwise I'd just copy from them. Can I instruct maven to use some alternative source to obtain the missing jars?