-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
executable file
·34 lines (23 loc) · 922 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
30
31
32
33
organization := "ouso"
name := "portfolio-manager"
version := "0.1"
scalaVersion := "2.9.0-1"
retrieveManaged := false
logLevel := Level.Warn
seq(webSettings :_*)
libraryDependencies ++= {
val liftVersion = "2.4-M3"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default" withSources(),
"net.liftweb" %% "lift-squeryl-record" % liftVersion % "compile->default" withSources()
)
}
libraryDependencies ++= Seq(
"com.h2database" % "h2" % "1.2.138" withSources(),
"c3p0" % "c3p0" % "0.9.1.2" withSources(),
"ch.qos.logback" % "logback-classic" % "0.9.26" withSources(),
"org.mortbay.jetty" % "jetty" % "6.1.22" % "jetty,test" withSources(),
"junit" % "junit" % "4.8.2" % "test->default" withSources(),
"org.scalatest" % "scalatest_2.9.0" % "1.6.1" % "test->default" withSources()
)
resolvers += "Jetty Repo" at "http://repo1.maven.org/maven2/org/mortbay/jetty"