-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathbuild.sbt
42 lines (32 loc) · 1.19 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
name := "spark-indexedrdd"
version := "0.4.0"
organization := "edu.berkeley.cs.amplab"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.10.6", "2.11.6")
spName := "amplab/spark-indexedrdd"
sparkVersion := "2.1.0"
sparkComponents += "core"
resolvers += "Repo at github.com/ankurdave/maven-repo" at "https://raw.githubusercontent.com/ankurdave/maven-repo/master"
libraryDependencies ++= Seq(
"com.ankurdave" % "part_2.10" % "0.1", // artifact is not published for 2.11, but it only contains Java code anyway
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.2" % "test"
)
publishMavenStyle := true
licenses += "Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.html")
pomExtra :=
<url>https://github.com/amplab/spark-indexedrdd</url>
<scm>
<url>git@github.com:amplab/spark-indexedrdd.git</url>
<connection>scm:git:git@github.com:amplab/spark-indexedrdd.git</connection>
</scm>
<developers>
<developer>
<id>ankurdave</id>
<name>Ankur Dave</name>
<url>https://github.com/ankurdave</url>
</developer>
</developers>
// Run tests with more memory
javaOptions in test += "-Xmx2G"
fork in test := true