未找到 sbt-play-soap 1.1.3

sbt-play-soap 1.1.3 not found

我有戏! 2.6 项目与 scala 2.12 和 sbt 1.1.6

我需要在我的服务中执行 SOAP api 调用,所以我看到了 Play!有一个东西叫做 Reactive SOAP for Play, and when I went in the documentation (https://github.com/playframework/play-soap#installation) 第一阶段是添加插件:

resolvers += Resolver.url("play-sbt-plugins", url("https://dl.bintray.com/playframework/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)

addSbtPlugin("com.typesafe.sbt" % "sbt-play-soap" % "1.1.3") 

但是我得到一个错误:

[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: com.typesafe.sbt#sbt-play-soap;1.1.3: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn]  Note: Some unresolved dependencies have extra attributes.  Check that these dependencies exist with the requested attributes.
[warn]      com.typesafe.sbt:sbt-play-soap:1.1.3 (scalaVersion=2.12, sbtVersion=1.0)
[warn]

有人试过这个吗?谢谢

版本 1.1.3 仅适用于 sbt 0.13

由于您正在使用 sbt 1.x.x,因此您必须使用版本 1.1.4

resolvers += Resolver.url("play-sbt-plugins", url("https://dl.bintray.com/playframework/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)

addSbtPlugin("com.typesafe.sbt" % "sbt-play-soap" % "1.1.4")