-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.sbt
56 lines (39 loc) · 1.59 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
49
50
51
52
53
54
55
56
name := "spark-betweenness"
organization := "com.centrality"
version := "1.0"
scalaVersion := "2.10.4"
crossScalaVersions := Seq("2.10.5", "2.11.7")
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.2.4" % "test"
spName := "dmarcous/spark-betweenness"
sparkVersion := "1.5.2"
sparkComponents += "graphx"
spAppendScalaVersion := true
EclipseKeys.eclipseOutput := Some("target/eclipse")
/********************
* Release settings *
********************/
credentials += Credentials(Path.userHome / ".sbtcredentials")
spShortDescription := "k Betweenness Centrality algorithm for Spark using GraphX"
spDescription := """Computing k Betweenness Centrality (kBC) on arbitrary graphs using GraphX.
|Uses Pregel API for k-graphlet generation and Brandes algorithm for kBC score contribution for each vertex in parallel.
|Works best for graphs with small diameter.""".stripMargin
spHomepage := "https://github.com/dmarcous/spark-betweenness"
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
pomExtra :=
<url>https://github.com/dmarcous/spark-betweenness</url>
<scm>
<url>[email protected]:dmarcous/spark-betweenness.git</url>
<connection>scm:git:[email protected]:dmarcous/spark-betweenness.git</connection>
</scm>
<developers>
<developer>
<id>dmarcous</id>
<name>Daniel Marcous</name>
<url>https://github.com/dmarcous</url>
</developer>
<developer>
<id>yotamsandbank</id>
<name>Yotam Sandbank</name>
<url>https://github.com/yotamsandbank</url>
</developer>
</developers>