Repository: apex-malhar Updated Branches: refs/heads/master 682c7ba59 -> 3e1cd8ff1
APEXMALHAR-2112 Add logging exclusions in geode dependency for running of all other contrib tests with 1.7 Java. Project: http://git-wip-us.apache.org/repos/asf/apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/apex-malhar/commit/3e1cd8ff Tree: http://git-wip-us.apache.org/repos/asf/apex-malhar/tree/3e1cd8ff Diff: http://git-wip-us.apache.org/repos/asf/apex-malhar/diff/3e1cd8ff Branch: refs/heads/master Commit: 3e1cd8ff1b90ab2d5464d7662aada55f9516734c Parents: 682c7ba Author: Chinmay Kolhatkar <[email protected]> Authored: Fri Jun 3 17:50:11 2016 -0700 Committer: Chinmay Kolhatkar <[email protected]> Committed: Fri Jun 3 17:50:11 2016 -0700 ---------------------------------------------------------------------- contrib/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/3e1cd8ff/contrib/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/pom.xml b/contrib/pom.xml index fab629c..c0ec6c7 100755 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -621,6 +621,24 @@ <artifactId>gemfire-core</artifactId> <version>1.0.0-incubating.M1</version> <optional>true</optional> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + </exclusion> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.github.fge</groupId>
