You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2017/01/21 00:12:26 UTC

hive git commit: HIVE-15036 : Druid code recently included in Hive pulls in GPL jar (Slim Bouguerra via Ashutosh Chauhan)

Repository: hive
Updated Branches:
  refs/heads/master f708412bf -> ffd1f0ebe


HIVE-15036 : Druid code recently included in Hive pulls in GPL jar (Slim Bouguerra via Ashutosh Chauhan)

Signed-off-by: Ashutosh Chauhan <ha...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/ffd1f0eb
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/ffd1f0eb
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/ffd1f0eb

Branch: refs/heads/master
Commit: ffd1f0ebec60b9f9b50494a192a730c44b0f3fa9
Parents: f708412
Author: Slim Bouguerra <sl...@gmail.com>
Authored: Wed Jan 18 15:35:00 2017 -0800
Committer: Ashutosh Chauhan <ha...@apache.org>
Committed: Fri Jan 20 16:11:34 2017 -0800

----------------------------------------------------------------------
 druid-handler/pom.xml |  5 +++++
 pom.xml               | 24 ++++++++++++++++++++++++
 2 files changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/ffd1f0eb/druid-handler/pom.xml
----------------------------------------------------------------------
diff --git a/druid-handler/pom.xml b/druid-handler/pom.xml
index 71c372e..d0104dc 100644
--- a/druid-handler/pom.xml
+++ b/druid-handler/pom.xml
@@ -121,6 +121,11 @@
           <groupId>com.fasterxml.jackson.core</groupId>
           <artifactId>jackson-databind</artifactId>
         </exclusion>
+        <exclusion>
+          <!--LGPL licenced library-->
+          <groupId>com.google.code.findbugs</groupId>
+          <artifactId>annotations</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/hive/blob/ffd1f0eb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c2e9ac3..b4c0b81 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1123,6 +1123,30 @@
         <artifactId>jamon-maven-plugin</artifactId>
         <version>${jamon.plugin.version}</version>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <version>1.4.1</version>
+        <executions>
+          <execution>
+            <id>enforce-banned-dependencies</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <bannedDependencies>
+                  <excludes>
+                    <!--LGPL licenced library-->
+                    <exclude>com.google.code.findbugs:annotations</exclude>
+                  </excludes>
+                </bannedDependencies>
+              </rules>
+              <fail>true</fail>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>