forked from syoummer/SpatialSpark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (20 loc) · 878 Bytes
/
build.sbt
File metadata and controls
23 lines (20 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
val Organization = "me.simin"
val Version = "1.1.0-SNAPSHOT"
val jts = "com.vividsolutions" % "jts" % "1.13"
val spark = "org.apache.spark" %% "spark-core" % "1.3.0" % "provided"
val scalaTest = "org.scalatest" %% "scalatest" % "2.2.4" % "test"
val sparkTestingBase = "com.holdenkarau" %% "spark-testing-base" % "1.3.0_0.0.5" % "test"
val buildSettings = Defaults.coreDefaultSettings ++ Seq(
organization := Organization,
version := Version,
scalaVersion := "2.10.5",
scalacOptions ++= Seq("-encoding", "UTF-8", "-unchecked", "-deprecation", "-feature"),
parallelExecution := false
)
lazy val spatialSpark: Project = Project(
"spatial-spark",
file("."),
settings = buildSettings ++ Seq(
libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-compiler" % _ % "provided"),
libraryDependencies ++= Seq(jts, scalaTest, sparkTestingBase, spark))
)