-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (21 loc) · 881 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
// set the name of the project
name := "calligraphy-guidelines"
version := "1.0"
organization := "org.ant"
// set the Scala version used for the project
scalaVersion := "2.9.2"
seq(webSettings :_*)
classpathTypes ~= (_ + "orbit")
libraryDependencies ++= Seq(
"org.scalatra" % "scalatra" % "2.1.1",
"org.scalatra" % "scalatra-scalate" % "2.1.1",
"org.scalatra" % "scalatra-specs2" % "2.1.1" % "test",
"ch.qos.logback" % "logback-classic" % "1.0.6" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "container",
"org.eclipse.jetty.orbit" % "javax.servlet" % "3.0.0.v201112011016" % "container;provided;test" artifacts (Artifact("javax.servlet", "jar", "jar"))
)
libraryDependencies ++= Seq(
"net.databinder.dispatch" %% "core" % "0.9.1",
"org.apache.pdfbox" % "pdfbox" % "1.7.1",
"org.scalatest" %% "scalatest" % "1.8" % "test"
)