3
votes

I'm trying to implement SOAP web service client in Play Framework. I found play-soap lib but I cannot find repository:

https://github.com/playframework/play-soap

http://downloads.typesafe.com/rp/play-soap/SbtWsdl.html

When I add sbt plugin addSbtPlugin("com.typesafe.play" % "play-soap-sbt" % "1.0") it returns:

Error:Unresolved dependencies: com.typesafe.play#play-soap-sbt;1.0: not found

How can I implement SOAP webservices in Play Framework (Scala)?

1
Have you tried providing resolvers in build.sbt - pamu
Are you using Typesafe Reactive Platform? - danielnixon
I have such resolvers: resolvers += "Typesafe repository" at "repo.typesafe.com/typesafe/releases" resolvers += "Sonatype snapshots" at "oss.sonatype.org/content/repositories/snapshots" I created play framework project using activator - Michał Jurczuk
I use play framework 2.3.9 and Scala 2.11.4, does it matter? - Michał Jurczuk
I'm having the same issue. - Adgezaza

1 Answers

1
votes

Go here and follow the install instructions. This is the open-sourced version of the plugin, and from the documentation it looks identical to the one in the official Play docs.

Essentially, add this to your project/plugins.sbt

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