[GRADLE-3346] Cannot resolve all dependencies for Play 2.3.7 when executing runPlayBinary Created: 07/Oct/15 Updated: 24/Jan/17 Resolved: 24/Jan/17 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Sterling Greene | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 0 |
Description |
https://discuss.gradle.org/t/gradle-2-7-play-cannot-resolve-sources-dependency/11707 Artifacts for Play 2.3.7 follows a non-standard layout, so our built-in samples for Play 2.3.x only work for 2.3.9. The workaround for 2.3.7 is to use a slightly different repository definition: repositories{ jcenter() maven{ name = "typesafe-maven-release" url = "https://repo.typesafe.com/typesafe/maven-releases" } ivy { url "https://repo.typesafe.com/typesafe/ivy-releases/" layout "pattern", { ivy "[organisation]/[module]/[revision]/ivys/ivy.xml" artifact "[organisation]/[module]/[revision]/jars/[artifact].[ext]" } } } |
Comments |
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 Sterling Greene [ 24/Jan/17 ] |
Since we don't automatically add the Typesafe repository information to a build file and you want to use Play 2.3.7, you can just use the workaround mentioned in the description. |