In game 2.1 and earlier, I had to add resolvers to Build.scala , for example:
val main = play.Project(appName, appVersion, appDependencies).settings( resolvers += Resolver.url("Objectify Play Repository", url("http://schaloner.imtqy.com/releases/"))(Resolver.ivyStylePatterns), resolvers += Resolver.url("Objectify Play Snapshot Repository", url("http://schaloner.imtqy.com/snapshots/"))(Resolver.ivyStylePatterns) )
In 2.2, I have to put it in build.sbt as:
... resolvers += "Objectify Play Snapshot Repository" at "http://schaloner.github.com/snapshots/" ...
But this does not work, no dependencies found.
Any ideas?
reen
source share