forked from hbase-rdd/hbase-rdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
40 lines (27 loc) · 962 Bytes
/
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
import SonatypeKeys._
sonatypeSettings
name := "hbase-rdd"
organization := "eu.unicredit"
version := "0.4.0-SNAPSHOT"
scalaVersion := "2.10.4"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-language:postfixOps",
"-language:implicitConversions",
"-language:reflectiveCalls"
)
org.scalastyle.sbt.ScalastylePlugin.Settings
resolvers ++= Seq(
"Cloudera releases" at "https://repository.cloudera.com/artifactory/libs-release"
)
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "1.0.2" % "provided",
"org.apache.hbase" % "hbase-common" % "0.98.1-cdh5.1.3" % "provided",
"org.apache.hbase" % "hbase-client" % "0.98.1-cdh5.1.3" % "provided",
"org.apache.hbase" % "hbase-server" % "0.98.1-cdh5.1.3" % "provided",
"org.json4s" %% "json4s-jackson" % "3.2.11" % "provided"
)
publishMavenStyle := true
pomIncludeRepository := { x => false }
credentials += Credentials(Path.userHome / ".ivy2" / "sonatype.credentials")