Repository: incubator-ranger Updated Branches: refs/heads/master e48732c84 -> e50132a92
Exclude slf4j-log4j12 in storm agent to avoid clash with log4j-over-slf4j. We don't ship either in the assembly so it has no impact on the distribution. Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/e50132a9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/e50132a9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/e50132a9 Branch: refs/heads/master Commit: e50132a92679946f9b221d29a0ffe1ef1dc66f6f Parents: e48732c Author: Colm O hEigeartaigh <[email protected]> Authored: Tue Jul 5 10:49:03 2016 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Tue Jul 5 10:49:03 2016 +0100 ---------------------------------------------------------------------- storm-agent/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/e50132a9/storm-agent/pom.xml ---------------------------------------------------------------------- diff --git a/storm-agent/pom.xml b/storm-agent/pom.xml index 0a0d5da..345b422 100644 --- a/storm-agent/pom.xml +++ b/storm-agent/pom.xml @@ -40,16 +40,34 @@ <groupId>org.apache.ranger</groupId> <artifactId>ranger-plugins-common</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.ranger</groupId> <artifactId>ranger-plugins-audit</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.ranger</groupId> <artifactId>credentialbuilder</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId>
