First steps with Scala and with Play. I'm trying to install the SecureSocial plugin, but I can't. I'm interested in the resolution itself, and anything (answer or resources) than can improve my knowledge of the tools.
In the Scala webpage (http://securesocial.ws/guide/installation.html) instructions are:
- To include the module in your project add the following dependency to your Build.scala file:
- "securesocial" %% "securesocial" % "2.1.2"
- Resolver: "http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/"
And that's the first problem. I don't have Build.scala. Anyway, I have a /project/plugins.sbt that has a very similar structure.
Even with a different format, I'm able to put the lines:
- resolvers += "Social login" at "http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/"
- addSbtPlugin("securesocial" %% "securesocial" % "2.1.2")
When I try to compile, an enormous exception stack appears. Basically:
- sbt.ResolveException: unresolved dependency: securesocial#securesocial;2.1.2: not found
Seems to be trying:
If I check http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/, I can't see anything similar to the path previously written. For example, you can see, where docs and source is placed, but in JAR format, not pom:
Am I doing it completely wrong?
Thanks!