Skip to content

Instantly share code, notes, and snippets.

@mbseid
Created June 13, 2012 13:55
Show Gist options
  • Save mbseid/2924219 to your computer and use it in GitHub Desktop.
Save mbseid/2924219 to your computer and use it in GitHub Desktop.
Deadbold Resolver
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "Blog"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
"com.typesafe.akka" % "akka-actor" % "2.+",
"com.mongodb.casbah" %% "casbah" % "2.1.5-1",
"com.novus" %% "salat-core" % "0.0.8-SNAPSHOT",
"be.objectify" %% "deadbolt-2" % "1.1.2"
)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
resolvers += "Novus Release Repository" at "http://repo.novus.com/releases/",
resolvers += "Novus Snapshots Repository" at "http://repo.novus.com/snapshots/",
resolvers += "Objectify Play Repository" at "http://schaloner.github.com/releases/"
//Also tried this straight out of the documentation. Yielded the same results.
//resolvers += Resolver.url(“Objectify Play Repository”, url(“http://schaloner.github.com/releases/”))(Resolver.ivyStylePatterns)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment