-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
43 lines (32 loc) · 1.79 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
name := "Open Hardware Project Documentation System"
version := "0.0.1"
organization := "at.fabricate"
scalaVersion := "2.11.2"
resolvers ++= Seq("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"staging" at "https://oss.sonatype.org/content/repositories/staging",
"releases" at "https://oss.sonatype.org/content/repositories/releases"
)
seq(webSettings :_*)
unmanagedResourceDirectories in Test <+= (baseDirectory) { _ / "src/main/webapp" }
classpathTypes ~= (_ + "openthings")
EclipseKeys.withSource := true
scalacOptions ++= Seq("-deprecation", "-unchecked")
libraryDependencies ++= {
val liftVersion = "2.6.2"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile",
"net.liftmodules" %% "lift-jquery-module_2.6" % "2.8",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "container,test",
"org.eclipse.jetty" % "jetty-plus" % "8.1.7.v20120910" % "container,test", // For Jetty Config
"org.eclipse.jetty.orbit" % "javax.servlet" % "3.0.0.v201112011016" % "container,test" artifacts Artifact("javax.servlet", "jar", "jar"),
"ch.qos.logback" % "logback-classic" % "1.0.6",
"org.specs2" %% "specs2" % "2.3.12" % "test",
"com.h2database" % "h2" % "1.3.167",
"net.liftmodules" %% "widgets_2.6" % "1.4-SNAPSHOT",
"net.liftmodules" %% "imaging_2.6" % "1.4-SNAPSHOT",
"net.liftmodules" %% "textile_2.6" % "1.3-SNAPSHOT",
"org.eclipse.jgit" % "org.eclipse.jgit" % "3.6.0.201411121045-m1",
"mysql" %"mysql-connector-java" % "5.1.34"
)
}