forked from ghostm/lift-omniauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (20 loc) · 878 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name := "Omniauth"
version := "2.4-0.6"
organization := "net.liftmodules"
scalaVersion := "2.9.1"
crossScalaVersions := Seq("2.8.1","2.9.0-1", "2.9.1")
resolvers += "databinder.net repository" at "http://databinder.net/repo"
libraryDependencies ++= {
val liftVersion = "2.4"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"net.databinder" %% "dispatch-core" % "0.8.5",
"net.databinder" %% "dispatch-http" % "0.8.5",
"net.databinder" %% "dispatch-oauth" % "0.8.5",
"net.databinder" %% "dispatch-gae" % "0.8.5",
"net.databinder" %% "dispatch-http-json" % "0.8.5"
)
}
// To publish to the Cloudbees repos:
publishTo := Some("liftmodules repository" at "https://repository-liftmodules.forge.cloudbees.com/release/")
credentials += Credentials( file("/private/liftmodules/cloudbees.credentials") )