aboutsummaryrefslogtreecommitdiff
path: root/examples/pom.xml
diff options
context:
space:
mode:
authortedyu <yuzhihong@gmail.com>2014-11-19 00:55:39 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-11-19 00:55:39 -0800
commit5f5ac2dafaf849d2375c81d699d82874ac462b49 (patch)
tree9fe482ab8109858d0af3f565f6f02a96bf28f2cd /examples/pom.xml
parent8327df69719abef02ce497151f875a4c188aa9b3 (diff)
downloadspark-5f5ac2dafaf849d2375c81d699d82874ac462b49.tar.gz
spark-5f5ac2dafaf849d2375c81d699d82874ac462b49.tar.bz2
spark-5f5ac2dafaf849d2375c81d699d82874ac462b49.zip
SPARK-4455 Exclude dependency on hbase-annotations module
pwendell Please take a look Author: tedyu <yuzhihong@gmail.com> Closes #3286 from tedyu/master and squashes the following commits: e61e610 [tedyu] SPARK-4455 Exclude dependency on hbase-annotations module 7e3a57a [tedyu] Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/spark 2f28b08 [tedyu] Exclude dependency on hbase-annotations module
Diffstat (limited to 'examples/pom.xml')
-rw-r--r--examples/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/pom.xml b/examples/pom.xml
index c64d3e6d24..8713230e1e 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -107,6 +107,11 @@
<version>${hbase.version}</version>
<exclusions>
<exclusion>
+ <!-- SPARK-4455 -->
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-annotations</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
</exclusion>
@@ -121,12 +126,24 @@
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<version>${hbase.version}</version>
+ <exclusions>
+ <exclusion>
+ <!-- SPARK-4455 -->
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-annotations</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>${hbase.version}</version>
<exclusions>
+ <exclusion>
+ <!-- SPARK-4455 -->
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-annotations</artifactId>
+ </exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
@@ -159,6 +176,11 @@
<artifactId>hadoop-auth</artifactId>
</exclusion>
<exclusion>
+ <!-- SPARK-4455 -->
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-annotations</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-annotations</artifactId>
</exclusion>