Scala com.xsbt-web-plugin在哪里发布?

Scala com.xsbt-web-plugin在哪里发布?,scala,repository,sbt,spray,xsbt-web-plugin,Scala,Repository,Sbt,Spray,Xsbt Web Plugin,我正在尝试更新项目,并且 sbt.ResolveException: unresolved dependency: com.earldouglas#xsbt-web-plugin;1.0.0-M7: not found 我已经添加了类型安全存储库 resolvers ++= Seq("spray repo" at "http://repo.spray.io", "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/

我正在尝试更新项目,并且

sbt.ResolveException: unresolved dependency: com.earldouglas#xsbt-web-plugin;1.0.0-M7: not found
我已经添加了类型安全存储库

resolvers ++= Seq("spray repo" at "http://repo.spray.io",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/")

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

对于1.0.0之前的版本,xsbt web插件已发布到Maven Central并同步到Maven Central。对于1.0.0及更高版本,它将发布到

未解决的依赖项:com.xsbt-web-plugin;1.0.0-M7

能否将依赖项从1.0.0-M7更新为1.0.0?更好的是,考虑更新到2.3.0或更高版本。

project/plugins.sbt:


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) 

你说我试图更新spray项目是什么意思?xsbt web插件包含在社区插件库中,因此不需要额外的解析器。
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)