-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
58 lines (45 loc) · 2.04 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name := "println"
organization := "ag.bett.lift"
version := "0.5"
scalaVersion := "2.9.1"
seq(webSettings: _*)
//port in container.Configuration := 8081
//scalacOptions ++= Seq("-deprecation")
scalacOptions ++= Seq("-unchecked", "-deprecation")
// If using JRebel with 0.1.0 of the sbt web plugin
//jettyScanDirs := Nil
// using 0.2.4+ of the sbt web plugin
scanDirectories in Compile := Nil
resolvers ++= Seq(
"Repo Maven" at "http://repo1.maven.org/maven2/",
"Repo Maven" at "http://repo2.maven.org/maven2/",
"Scala Tools Snapshot" at "http://scala-tools.org/repo-releases/",
"Scala Tools Snapshot" at "http://scala-tools.org/repo-snapshots/",
"Java.net Maven2 Repository" at "http://download.java.net/maven/2/",
"Typesafe Repo" at "http://repo.typesafe.com/typesafe/ivy-releases"
)
// if you have issues pulling dependencies from the scala-tools repositories (checksums don't match), you can disable checksums
//checksums := Nil
libraryDependencies ++= {
val liftVersion = "2.4"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile->default",
"net.liftweb" %% "lift-wizard" % liftVersion % "compile->default",
"net.liftweb" %% "lift-widgets" % liftVersion % "compile->default",
"net.liftweb" %% "lift-mongodb-record" % liftVersion % "compile->default")
}
libraryDependencies ++= Seq(
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
"com.foursquare" %% "rogue" % "1.1.0" intransitive(),
// "org.twitter4j" % "twitter4j-core" % "2.2.5",
"com.github.scala-incubator.io" %% "scala-io-core" % "0.2.0",
"com.github.scala-incubator.io" %% "scala-io-file" % "0.2.0"
)
libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-webapp" % "7.1.0.RC1" % "container",
"org.scala-tools.testing" % "specs_2.9.0" % "1.6.8" % "test", // For specs.org tests
"junit" % "junit" % "4.8" % "test->default", // For JUnit 4 testing
"javax.servlet" % "servlet-api" % "2.5" % "provided->default",
"ch.qos.logback" % "logback-classic" % "0.9.26" % "compile->default"
)