-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.sbt
executable file
·35 lines (29 loc) · 996 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
34
name := "SoDA"
version := "2.0"
scalaVersion := "2.12.6"
organization := "com.elsevier"
enablePlugins(JettyPlugin)
libraryDependencies ++= Seq(
// web-mvc
"org.springframework" % "spring-webmvc" % "5.0.7.RELEASE",
"org.springframework" % "spring-context" % "5.0.7.RELEASE",
"javax.servlet" % "javax.servlet-api" % "4.0.1" % "provided",
"javax.servlet" % "jstl" % "1.2",
// json
"com.google.code.gson" % "gson" % "2.8.5",
"commons-io" % "commons-io" % "2.4",
// multithreading
"com.typesafe.akka" %% "akka-actor" % "2.5.13",
// http
"com.softwaremill.sttp" %% "core" % "1.2.0-RC6",
"com.softwaremill.sttp" %% "json4s" % "1.2.0-RC6",
// distance metric
"org.apache.commons" % "commons-text" % "1.4",
// solr
"org.apache.solr" % "solr-solrj" % "7.3.1",
// logging
"org.slf4j" % "slf4j-api" % "1.7.25",
"org.slf4j" % "slf4j-log4j12" % "1.7.25",
// test
"com.novocode" % "junit-interface" % "0.11" % Test
)