I'm getting an error deploying my app to Heroku because of an "unresolved dependencies" error for com.google.guava#guava-base;r03 and com.google.guava#guava-annotaions;r03. When I try to get one of the jars manually with the URL:
http://repo.typesafe.com/typesafe/releases/com/google/guava/guava-base/r03/guava-base-r03.jar
I get the below errors. It looks like the checksums are wrong for this artifact in the typesafe releases repo. Does anyone know how to fix or work around this issue? Thanks!
HTTP Status 409 - Rejected artifact download request: Checksum policy 'GEN_IF_ABSENT' rejected the artifact 'guava-base-r03.jar'. Checksums info: [ChecksumInfo{type=SHA-1, original='cb713fb4e84bd3c82cb71dece3c123563ed2643e', actual='251db72895ba5745e6810334075095832f12f437'}, ChecksumInfo{type=MD5, original='1384456aeec4d4c8cc2bff9227766a4e', actual='4bb26509e6e43a603b4e2f17161fbbc5'}]
type Status report
message Rejected artifact download request: Checksum policy 'GEN_IF_ABSENT' rejected the artifact 'guava-base-r03.jar'. Checksums info: [ChecksumInfo{type=SHA-1, original='cb713fb4e84bd3c82cb71dece3c123563ed2643e', actual='251db72895ba5745e6810334075095832f12f437'}, ChecksumInfo{type=MD5, original='1384456aeec4d4c8cc2bff9227766a4e', actual='4bb26509e6e43a603b4e2f17161fbbc5'}]
description The request could not be completed due to a conflict with the current state of the resource (Rejected artifact download request: Checksum policy 'GEN_IF_ABSENT' rejected the artifact 'guava-base-r03.jar'. Checksums info: [ChecksumInfo{type=SHA-1, original='cb713fb4e84bd3c82cb71dece3c123563ed2643e', actual='251db72895ba5745e6810334075095832f12f437'}, ChecksumInfo{type=MD5, original='1384456aeec4d4c8cc2bff9227766a4e', actual='4bb26509e6e43a603b4e2f17161fbbc5'}]).
Apache Tomcat/7.0.26
val main = PlayProject(appName, appVersion,appDependencies).settings(defaultScalaSettings:_*).settings(checksums in update := Nil,resolvers := Seq(DefaultMavenRepository)). I'd still like some help on getting the checksums fixed on the guava artifacts so I can re-enable checksum checking. Thanks – Steve Myers Aug 5 '12 at 7:23