-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
46 lines (32 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
organization := "ai.di.uoa"
name := "dsJedai"
version := "1.1"
scalaVersion := "2.11.12"
val sparkVersion = "2.4.4"
scalacOptions ++= Seq("-feature", "-language:reflectiveCalls")
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion % Provided,
"org.apache.spark" %% "spark-sql" % sparkVersion % Provided
)
// https://mvnrepository.com/artifact/org.apache.sedona/sedona-core-2.4
libraryDependencies += "org.apache.sedona" %% "sedona-core-2.4" % "1.0.0-incubating"
// https://mvnrepository.com/artifact/org.apache.sedona/sedona-sql-2.4
libraryDependencies += "org.apache.sedona" %% "sedona-sql-2.4" % "1.0.0-incubating"
// https://mvnrepository.com/artifact/org.locationtech.jts/jts-core
libraryDependencies += "org.locationtech.jts" % "jts-core" % "1.18.0"
// https://mvnrepository.com/artifact/org.datasyslab/geotools-wrapper
libraryDependencies += "org.datasyslab" % "geotools-wrapper" % "geotools-24.0"
// https://mvnrepository.com/artifact/org.wololo/jts2geojson
libraryDependencies += "org.wololo" % "jts2geojson" % "0.14.3"
dependencyOverrides += "com.fasterxml.jackson.core" % "jackson-databind" % "2.6.7"
libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.4.0"
// https://mvnrepository.com/artifact/org.apache.commons/commons-math3
libraryDependencies += "org.apache.commons" % "commons-math3" % "3.0"
// https://mvnrepository.com/artifact/org.typelevel/cats-core
libraryDependencies += "org.typelevel" %% "cats-core" % "2.0.0-RC3"
// https://mvnrepository.com/artifact/org.scalatest/scalatest
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}