unresolved dependency: sbt-plugin #11750
azadbolour
started this conversation in
General
Replies: 2 comments 4 replies
|
This is caused by sbt/sbt#7202 and should now be fixed |
1 reply
|
Thanks for your prompt response. My understanding is that the plugin should now be available under: https://repo1.maven.org/maven2/com/typesafe/play/sbt-plugin_2.12_1.0/ However, the lowest version of the plugin there is 2.8.8. If I use that version, I get the following incompatibility: And I am not sure what to do about that. If the lower versions are no longer supported, can you advise on working around the above incompatibilities? If lower versions are still supported, I was hoping to use version 2.8.7, or in case of issues, version 2.8.0. Could they be added to the repo? Many thanks. Azad |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I am getting the following unresolved dependency in building my Scala Play
project:
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes.
[warn] com.typesafe.play:sbt-plugin:2.8.7 (sbtVersion=1.0, scalaVersion=2.12)
[warn]
[warn] Note: Unresolved dependencies path:
[error] sbt.librarymanagement.ResolveException: Error downloading com.typesafe.play:sbt-plugin;sbtVersion=1.0;scalaVersion=2.12:2.8.7
[error] Not found
[error] Not found
[error] not found: https://repo1.maven.org/maven2/com/typesafe/play/sbt-plugin_2.12_1.0/2.8.7/sbt-plugin-2.8.7.pom
[error] not found: /Users/azadbolour/.ivy2/localcom.typesafe.play/sbt-plugin/scala_2.12/sbt_1.0/2.8.7/ivys/ivy.xml
[error] checksum format error: /Users/azadbolour/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.typesafe.play/sbt-plugin/scala_2.12/sbt_1.0/2.8.7/ivys/ivy.xml.sha1
[error] checksum format error: /Users/azadbolour/Library/Caches/Coursier/v1/https/repo.typesafe.com/typesafe/ivy-releases/com.typesafe.play/sbt-plugin/scala_2.12/sbt_1.0/2.8.7/ivys/ivy.xml.sha1
My setup includes:
build.sbt with:
enablePlugins(PlayScala)
scalaVersion := "2.12.12"
build.properties:
sbt.version=1.8.2
plugins.sbt
logLevel := Level.Warn
resolvers += Resolver.sbtPluginRepo("releases")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.7")
The same issue remains for version 2.8.0 of Play. And for version 1.3.13 of sbt.
How should I configure my project to access the needed play sbt plugin?
Many thanks.
Azad
All reactions