[GRADLE-2124] Attempting to download 3rd party dependency fails on googlecode.com Created: 23/Feb/12 Updated: 10/Feb/17 Resolved: 10/Feb/17 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 1.0-milestone-8a |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | David Kowis | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 3 |
Description |
Following the instructions from here: It fails to download the dependencies, because the HEAD request from googlecode.com comes back with a 404, but the actual artifact comes back with a 200 OK. Referenced Mailing list thread: http://markmail.org/thread/taglup3focxit36y $ gradle tasks -i --refresh=dependencies Starting Build Settings evaluated using empty settings file. Projects loaded. Root project using build file '/home/dkowis/gitwork/Catacomb-Snatch-1/build.gradle'. Included projects: [root project 'Catacomb-Snatch-1'] Evaluating root project 'Catacomb-Snatch-1' using build file '/home/dkowis/gitwork/Catacomb-Snatch-1/build.gradle'. Compiling build file '/home/dkowis/gitwork/Catacomb-Snatch-1/build.gradle' using BuildScriptClasspathScriptTransformer. Resource missing. [HTTP GET: http://gradle-macappbundle.googlecode.com/files/gradle-macappbundle-1.0.3.xml] Resource missing. [HTTP HEAD: http://gradle-macappbundle.googlecode.com/files/gradle-macappbundle-1.0.3.jar] FAILURE: Build failed with an exception. * What went wrong: Could not resolve all dependencies for configuration ':classpath'. > Could not find group:edu.sc.seis, module:gradle-macappbundle, version:1.0.3. Required by: :Catacomb-Snatch-1:unspecified * Try: Run with --stacktrace option to get the stack trace. Run with --debug option to get more log output. |
Comments |
Comment by Francois Valdy [ 08/Nov/12 ] |
This issue can be worked around by URLResolver like this: new org.apache.ivy.plugins.resolver.URLResolver() { protected ResolvedResource findResourceUsingPattern(ModuleRevisionId mrid, String pattern, Artifact artifact, ResourceMDParser rmdparser, Date date) { // work around http://code.google.com/p/support/issues/detail?id=660 URLHandlerRegistry.getDefault().requestMethod = URLHandler.REQUEST_METHOD_GET try { super.findResourceUsingPattern(mrid, pattern, artifact, rmdparser, date) } finally { URLHandlerRegistry.getDefault().requestMethod = URLHandler.REQUEST_METHOD_HEAD } } } Although to avoid having everyone go through the same pain over and over again, I created a small plugin to allow easy repository setup for googlecode/github/sourceforge/nuget: (FYI NuGet doesn't implement HEAD as well, and returns '501 Not Implemented') |
Comment by Benjamin Muschko [ 15/Nov/16 ] |
As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub. We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to. Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:
We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle! |
Comment by Benjamin Muschko [ 10/Feb/17 ] |
Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved. |