2

我正在尝试更新喷雾项目,并得到了

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/")

但仍然无法解决这种依赖关系。

4

2 回答 2

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.0from1.0.0-M7吗?更好的是,考虑更新到2.3.0或以后。

项目/plugins.sbt:

addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "1.0.0")
于 2015-07-09T13:47:25.430 回答
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) 
于 2017-01-23T08:05:39.733 回答