forked from master/spark-stemming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
37 lines (22 loc) · 1015 Bytes
/
Copy pathbuild.sbt
File metadata and controls
37 lines (22 loc) · 1015 Bytes
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
name := "spark-stemming"
organization := "com.github.master"
spName := "master/spark-stemming"
version := "0.1.2"
sparkVersion := "1.6.1"
scalaVersion := "2.10.6"
crossScalaVersions := Seq("2.10.6", "2.11.8")
spAppendScalaVersion := true
spShortDescription := "Spark MLlib wrapper for the Snowball framework"
spDescription := """Snowball is a small string processing language
| designed for creating stemming algorithms for
| use in Information Retrieval. This package allows
| to use it as a part of Spark ML Pipeline API.""".stripMargin
licenses := Seq("BSD 2-Clause" -> url("https://opensource.org/licenses/BSD-2-Clause"))
spDistDirectory := target.value
sparkComponents ++= Seq("mllib", "sql")
parallelExecution := false
credentials += Credentials(Path.userHome / ".sbt" / "sparkpkg-credentials")
libraryDependencies ++= Seq(
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.scalatest" %% "scalatest" % "2.1.5" % "test"
)