-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
44 lines (24 loc) · 1.44 KB
/
build.sbt
File metadata and controls
44 lines (24 loc) · 1.44 KB
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
name := "HXT"
version := "1.0"
scalaVersion := "2.11.12"
resolvers ++= Seq("Cloudera Repository" at "https://repository.cloudera.com/content/repositories/releases/")
resolvers ++= Seq("jitpack.io" at "https://jitpack.io")
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.2.2"
libraryDependencies += "org.apache.spark" %% "spark-streaming" % "2.2.2"
libraryDependencies += "org.apache.hbase" % "hbase-server" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-client" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-common" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-mapreduce" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-hadoop-compat" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-hadoop2-compat" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-metrics-api" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-metrics" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-zookeeper" % "2.0.2"
libraryDependencies += "org.apache.hbase" % "hbase-spark" % "2.0.0-cdh6.0.0"
libraryDependencies += "com.github.emilianobonassi" % "jpbc" % "v2.0.0"
libraryDependencies += "com.github.alexandrnikitin" %% "bloom-filter" % "latest.release"
libraryDependencies += "org.bouncycastle" % "bcprov-jdk15on" % "1.58"
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}