Skip to content

Instantly share code, notes, and snippets.

@mathieuancelin
Created May 27, 2013 17:21
Show Gist options
  • Save mathieuancelin/5658169 to your computer and use it in GitHub Desktop.
Save mathieuancelin/5658169 to your computer and use it in GitHub Desktop.
import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "test"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
jdbc,
anorm,
"org.ancelin.play2.couchbase" %% "play2-couchbase" % "0.1-SNAPSHOT"
)
val main = play.Project(appName, appVersion, appDependencies).settings(
// Add your own project settings here
resolvers += "ancelin" at "https://raw.github.com/mathieuancelin/play2-couchbase/master/repository/snapshots",
resolvers += "Spy Repository" at "http://files.couchbase.com/maven2"
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment