-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (31 loc) · 1.19 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
name := "ReAGEnT-SparkNLP-SparkML"
version := "0.1"
scalaVersion := "2.12.14"
val SparkVersion = "2.4.8"
libraryDependencies ++= Seq(
// Spark Dependencies
"org.apache.spark" %% "spark-core" % SparkVersion,
"org.apache.spark" %% "spark-streaming" % SparkVersion,
"org.apache.spark" %% "spark-sql" % SparkVersion,
"org.apache.spark" %% "spark-catalyst" % SparkVersion,
"org.apache.spark" %% "spark-mllib" % SparkVersion,
// MongoDB-Spark-Connector
"org.mongodb.spark" %% "mongo-spark-connector" % "2.4.3",
// "org.reactivemongo" %% "reactivemongo" % "1.0.3",
"org.mongodb.scala" %% "mongo-scala-driver" % "2.9.0",
// Configuration
"com.typesafe" % "config" % "1.4.1",
// Http Library
"org.scalaj" %% "scalaj-http" % "2.4.2",
// Tests
"org.scalactic" %% "scalactic" % "3.2.5",
"org.scalatest" %% "scalatest" % "3.2.5" % "test",
// Sentiment Analysis
"edu.stanford.nlp" % "stanford-corenlp" % "4.2.2",
//Plotting dependencies
"org.jfree" % "jfreechart" % "1.0.19",
)
libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % "4.2.2" classifier "models"
// disable trapExit, so systemd restarts the service upon operational disconnect or connection loss
fork in run := false
trapExit := false