-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.sbt
48 lines (39 loc) · 1.49 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 := "hbrdd"
version := "1.0"
scalaVersion := "2.10.5"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-language:postfixOps",
"-language:implicitConversions",
"-language:reflectiveCalls"
)
val hbaseVersion = "1.1.1"
val hadoopVersion = "2.6.0"
val lang3Version = "3.0"
val jacksonVersion = "3.2.11"
val hadoopCommon = "org.apache.hadoop" % "hadoop-common" % hadoopVersion % "compile" excludeAll ExclusionRule(organization = "javax.servlet")
val hadoopHdfs = "org.apache.hadoop" % "hadoop-hdfs" % hadoopVersion
val hbase = "org.apache.hbase" % "hbase" % hbaseVersion
val hbaseCommon = "org.apache.hbase" % "hbase-common" % hbaseVersion % "compile"
val hbaseClient = "org.apache.hbase" % "hbase-client" % hbaseVersion % "compile"
val hbaseServer = "org.apache.hbase" % "hbase-server" % hbaseVersion % "compile" excludeAll ExclusionRule(organization = "org.mortbay.jetty")
val hbaseProtocol = "org.apache.hbase" % "hbase-protocol" % hbaseVersion % "compile"
val hbaseHadoopCompat = "org.apache.hbase" % "hbase-hadoop-compat" % hbaseVersion % "compile"
val hbaseHadoop2Compat = "org.apache.hbase" % "hbase-hadoop2-compat" % hbaseVersion % "compile"
val lang3 = "org.apache.commons" % "commons-lang3" % lang3Version
val jackson = "org.json4s" %% "json4s-jackson" % jacksonVersion % "provided"
libraryDependencies ++= Seq(
hadoopCommon,
hadoopHdfs,
hbase,
hbaseCommon,
hbaseClient,
hbaseProtocol,
hbaseHadoopCompat,
hbaseHadoop2Compat,
hbaseServer,
lang3,
jackson
)
fork in Test := true