-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
23 lines (17 loc) · 815 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
name := "markov-spark"
version := "0.1"
scalaVersion := "2.11.12"
Compile/mainClass := Some("com.jrciii.markov.Main")
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}
resolvers += "jitpack" at "https://jitpack.io"
// https://mvnrepository.com/artifact/org.apache.spark/spark-sql
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.3.1"
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.5"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"
// https://mvnrepository.com/artifact/com.rometools/rome
libraryDependencies += "com.rometools" % "rome" % "1.11.0"
// https://mvnrepository.com/artifact/org.jsoup/jsoup
libraryDependencies += "com.github.jhy" % "jsoup" % "master-SNAPSHOT"