Repository: drill
Updated Branches:
refs/heads/master e57c6542c -> 2311843ba
DRILL-4362: Exclude log4j for hbase dependency under mapr profile
This closes #366
Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/2311843b
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/2311843b
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/2311843b
Branch: refs/heads/master
Commit: 2311843ba32cca7cdb401fbf1243a972586ba3f8
Parents: e57c654
Author: Sudheesh Katkam <skatkam@maprtech.com>
Authored: Fri Feb 5 15:36:52 2016 -0800
Committer: Sudheesh Katkam <skatkam@maprtech.com>
Committed: Fri Feb 5 16:47:33 2016 -0800
----------------------------------------------------------------------
contrib/storage-hbase/pom.xml | 6 ++++++
distribution/pom.xml | 6 ++++++
2 files changed, 12 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/drill/blob/2311843b/contrib/storage-hbase/pom.xml
----------------------------------------------------------------------
diff --git a/contrib/storage-hbase/pom.xml b/contrib/storage-hbase/pom.xml
index 7d5a30e..3862ed9 100644
--- a/contrib/storage-hbase/pom.xml
+++ b/contrib/storage-hbase/pom.xml
@@ -191,6 +191,12 @@
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-testing-util</artifactId>
<classifier>tests</classifier>
+ <exclusions>
+ <exclusion>
+ <artifactId>log4j</artifactId>
+ <groupId>log4j</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
</profile>
http://git-wip-us.apache.org/repos/asf/drill/blob/2311843b/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 135c974..8974178 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -238,6 +238,12 @@
<dependency>
<groupId>com.mapr.fs</groupId>
<artifactId>mapr-hbase</artifactId>
+ <exclusions>
+ <exclusion>
+ <artifactId>log4j</artifactId>
+ <groupId>log4j</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
|