我正在尝试更新spray项目,并获得了
sbt.ResolveException: unresolved dependency: com.earldouglas#xsbt-web-plugin;1.0.0-M7: not found
我添加了Typesafe存储库
resolvers ++= Seq("spray repo" at "http://repo.spray.io",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/")
但仍无法解决此依赖关系。
答案 0 :(得分:4)
对于1.0.0之前的版本,xsbt-web-plugin已发布到Sonatype并同步到Maven Central。对于1.0.0及更高版本,它将发布到Bintray。
未解决的依赖关系:
com.earldouglas#xsbt-web-plugin;1.0.0-M7
您可以从1.0.0
将您的相关性更新为1.0.0-M7
吗?更好的是,请考虑更新为2.3.0
或更晚。
项目/ plugins.sbt:
addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "1.0.0")
答案 1 :(得分:0)
build.sbt中的以下代码为我工作
resolvers += Resolver.bintrayRepo("earldouglas", "sbt-plugins")
addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "2.2.0")
resolvers += Resolver.url(
"bintray-earldouglas-sbt-plugins",
url("http://dl.bintray.com/earldouglas/sbt-plugins"))(
Resolver.ivyStylePatterns)