DRILL-226: exclude dependencies with lgpl license
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/78f6e583 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/78f6e583 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/78f6e583 Branch: refs/heads/master Commit: 78f6e583fdabf13835cc7f7b5b9c1f64fc7d6027 Parents: a1e20fd Author: Steven Phillips <[email protected]> Authored: Mon Sep 9 22:06:09 2013 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Tue Sep 10 14:31:50 2013 -0700 ---------------------------------------------------------------------- common/pom.xml | 6 ++++++ exec/java-exec/pom.xml | 1 - pom.xml | 27 +++++++++++++++++++++++++++ sqlparser/pom.xml | 1 - 4 files changed, 33 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/78f6e583/common/pom.xml ---------------------------------------------------------------------- diff --git a/common/pom.xml b/common/pom.xml index cd973e2..4c4a2fc 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -55,6 +55,12 @@ <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>4.3.1.Final</version> + <exclusions> + <exclusion> + <groupId>org.jboss.logging</groupId> + <artifactId>jboss-logging</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/78f6e583/exec/java-exec/pom.xml ---------------------------------------------------------------------- diff --git a/exec/java-exec/pom.xml b/exec/java-exec/pom.xml index 2c25963..a0fb70a 100644 --- a/exec/java-exec/pom.xml +++ b/exec/java-exec/pom.xml @@ -50,7 +50,6 @@ <dependency> <groupId>net.hydromatic</groupId> <artifactId>optiq</artifactId> - <version>0.4.10</version> </dependency> <dependency> <groupId>org.freemarker</groupId> http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/78f6e583/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index de7294a..3fc2ee1 100644 --- a/pom.xml +++ b/pom.xml @@ -398,6 +398,33 @@ <artifactId>core</artifactId> <groupId>org.eclipse.jdt</groupId> </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-core-asl</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-xc</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-jaxrs</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>net.hydromatic</groupId> + <artifactId>optiq</artifactId> + <version>0.4.10</version> + <exclusions> + <exclusion> + <groupId>org.jgrapht</groupId> + <artifactId>jgrapht-jdk1.5</artifactId> + </exclusion> </exclusions> </dependency> </dependencies> http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/78f6e583/sqlparser/pom.xml ---------------------------------------------------------------------- diff --git a/sqlparser/pom.xml b/sqlparser/pom.xml index 8260df2..831d9fb 100644 --- a/sqlparser/pom.xml +++ b/sqlparser/pom.xml @@ -15,7 +15,6 @@ <dependency> <groupId>net.hydromatic</groupId> <artifactId>optiq</artifactId> - <version>0.4.10</version> </dependency> <dependency> <groupId>org.apache.drill</groupId>
