Go to fire up my clojure/lein app this morning and suddenly I am getting this error!
Retrieving lein-clojars/lein-clojars/0.9.1/lein-clojars-0.9.1.pom from clojars
Retrieving lein-clojars/lein-clojars/0.9.1/lein-clojars-0.9.1.jar from clojars
Could not find metadata org.codehaus.jackson:jackson-core-asl/maven-metadata.xml in local (/Users/JD/.m2/repository)
Could not transfer metadata org.codehaus.jackson:jackson-core-asl/maven-metadata.xml from/to central (http://repo1.maven.org/maven2/): Checksum validation failed, expected e3f022e29dff365daf755e2c89fe42867e7addac but is aed947332fa98b1f9cd176faa3d046faa1e48bc9
Failure to find org.codehaus.jackson:jackson-core-asl/maven-metadata.xml in https://clojars.org/repo/ was cached in the local repository, resolution will not be reattempted until the update interval of clojars has elapsed or updates are forced
This could be due to a typo in :dependencies or network issues.
Could not resolve dependencies
Checksum validation error? On jackson-core-asl? There are no typos or network issues (verified). What is going on here! Anyone have a clue?
Thanks!
The
maven-metadata.xmlforjackson-core-aslhas indeed an MD5 file ofaed947332fa98b1f9cd176faa3d046faa1e48bc9, while the one leiningen calculated over the downloaded file ise3f022e29dff365daf755e2c89fe42867e7addac. This can occur when e.g. there’s some network issue while downloading an artifact from the remote repository: it can happen that in such cases a failure HTTP code such as 404 is disregarded, and the hash is calculated over the HTML page describing the error.Make sure you can reach the artifact at least manually (i.e. no 404 or such), issue a
and retry.