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.0依存関係をfromに更新できます1.0.0-M7か? 2.3.0さらに良いことに、またはそれ以降に更新することを検討してください。

プロジェクト/plugins.sbt:

addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "1.0.0")
于 2015-07-09T13:47:25.430 に答える