I'm having a problem dowloading the dependency from the main repo:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-ldap</artifactId>
<version>1.1.2</version>
</dependency>
When Maven tries to retrieve the dependencies, I get checksum errors (posted
below). On subsequent builds no CHECKSUM errors are generated, but the
build breaks with unresolved dependencies. My local repo (~/.m2) shows the
pom, jar, etc, (they're just not used?)
Here's the error I get:
[INFO] Using default encoding to copy filtered resources.
Downloading:
http://repo1.maven.org/maven2/org/springframework/spring-ldap/1.1.2/spring-ldap-1.1.2.pom
5K downloaded
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'eb39bdf295c470b02ddf9cd0062b9aa30054875a'; remote
= '02773b262d9788ebcd91a4c2301499dced840510' - RETRYING
Downloading:
http://repo1.maven.org/maven2/org/springframework/spring-ldap/1.1.2/spring-ldap-1.1.2.pom
5K downloaded
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'eb39bdf295c470b02ddf9cd0062b9aa30054875a'; remote
= '02773b262d9788ebcd91a4c2301499dced840510' - IGNORING
Downloading:
http://repo1.maven.org/maven2/org/springframework/spring-ldap/1.1.2/spring-ldap-1.1.2.jar
108K downloaded
[INFO] [compiler:compile]
[INFO] Compiling 258 source files to c:\Documents and
Settings\ian\Projects\maven_refactoring\fake-project\common\target
\classes
I'm assuming this is something on my end, though I can't figure out what.
All the other dependencies on this project are retrieved with no problems.
Thanks in advance for any help!
--ian