-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
46 lines (30 loc) · 1.31 KB
/
build.sbt
File metadata and controls
46 lines (30 loc) · 1.31 KB
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
name := "PDFExtractionToolkit"
version := "1.0"
scalaVersion := "2.11.7"
sbtVersion := "0.13.7"
parallelExecution in Test := false
resolvers ++= Seq(
"artifactory.ambitious.tools" at "http://artifactory.ambitious.tools/artifactory/libs-snapshot-local",
"Sonatype repository" at "https://oss.sonatype.org/content/repositories/snapshots/"
)
unmanagedBase := baseDirectory.value / "lib_unmanaged"
val akkaV = "2.3.9"
val sprayV = "1.3.3"
libraryDependencies ++= Seq(
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % "test",
"tabula-extractor" % "tabula-extractor" % "0.7.4-SNAPSHOT",
"com.github.tototoshi" %% "scala-csv" % "1.2.1",
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.typesafe.slick" %% "slick" % "3.1.0",
"org.xerial" % "sqlite-jdbc" % "3.8.11.2",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"commons-io" % "commons-io" % "2.4",
"log4j" % "log4j" % "1.2.14"
)
Revolver.settings: Seq[sbt.Def.Setting[_]]
scalacOptions += "-deprecation"