forked from hbase-rdd/hbase-rdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
67 lines (54 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
import SonatypeKeys._
sonatypeSettings
name := "hbase-rdd"
organization := "eu.unicredit"
version := "0.4.1"
scalaVersion := "2.10.4"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-language:postfixOps",
"-language:implicitConversions",
"-language:reflectiveCalls"
)
org.scalastyle.sbt.ScalastylePlugin.Settings
resolvers ++= Seq(
"Cloudera repos" at "https://repository.cloudera.com/artifactory/cloudera-repos",
"Cloudera releases" at "https://repository.cloudera.com/artifactory/libs-release"
)
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.hbase" % "hbase-common" % "0.98.6-cdh5.3.1" % "provided",
"org.apache.hbase" % "hbase-client" % "0.98.6-cdh5.3.1" % "provided",
"org.apache.hbase" % "hbase-server" % "0.98.6-cdh5.3.1" % "provided",
"org.json4s" %% "json4s-jackson" % "3.2.11" % "provided"
)
publishMavenStyle := true
pomIncludeRepository := { x => false }
credentials += Credentials(Path.userHome / ".ivy2" / "sonatype.credentials")
pomExtra := {
<url>https://github.com/unicredit/hbase-rdd</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/unicredit/hbase-rdd</connection>
<developerConnection>scm:git:[email protected]:unicredit/hbase-rdd</developerConnection>
<url>github.com/unicredit/hbase-rdd</url>
</scm>
<developers>
<developer>
<id>andreaferretti</id>
<name>Andrea Ferretti</name>
<url>https://github.com/andreaferretti/</url>
</developer>
<developer>
<id>fmontecuccolideglierri</id>
<name>Francesco Montecuccoli Degli Erri</name>
<url>https://github.com/fmontecuccolideglierri/</url>
</developer>
</developers>
}