forked from mozilla/spark-hyperloglog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (35 loc) · 1.09 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
47
48
name := "spark-hyperloglog"
version := "2.0.0-SNAPSHOT"
scalaVersion := "2.11.8"
organization := "com.mozilla.telemetry"
sparkVersion := "2.0.2"
sparkComponents ++= Seq("core", "sql")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"com.twitter" %% "algebird-core" % "0.12.0"
)
credentials += Credentials(Path.userHome / ".ivy2" / ".sbtcredentials")
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
licenses += "Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0")
homepage := Some(url("http://github.com/mozilla/spark-hyperloglog"))
scmInfo := Some(
ScmInfo(
url("https://github.com/mozilla/spark-hyperloglog"),
"scm:[email protected]:mozilla/spark-hyperloglog.git"
)
)
developers := List(
Developer(
id = "fbertsch",
name = "Frank Bertsch",
email = "[email protected]",
url = url("http://frankbertsch.com")
)
)