-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.sbt
42 lines (39 loc) · 1.29 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
import sbt._
import sbt.Keys._
lazy val commonSettings = Seq(
name := "archivespark",
organization := "org.archive.webservices",
version := "3.3.8-SNAPSHOT",
scalaVersion := "2.12.8",
fork := true,
exportJars := true
)
lazy val archivespark = (project in file("."))
.settings(
commonSettings,
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "2.4.5" % "provided",
"org.apache.spark" %% "spark-sql" % "2.4.5" % "provided",
"org.archive.webservices" %% "sparkling" % "0.3.8-SNAPSHOT" % "provided",
"edu.stanford.nlp" % "stanford-corenlp" % "4.3.1" % "provided"
),
homepage := Some(url("https://github.com/internetarchive/ArchiveSpark")),
scmInfo := Some(
ScmInfo(
url("https://github.com/internetarchive/ArchiveSpark"),
"scm:[email protected]:internetarchive/ArchiveSpark.git"
)
),
developers := List(
Developer(
id = "helgeho",
name = "Helge Holzmann",
email = "[email protected]",
url = url("http://www.HelgeHolzmann.de")
)
),
licenses := Seq(
"MIT" -> url("http://www.opensource.org/licenses/mit-license.php")
)
)
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)