Repository: metron Updated Branches: refs/heads/master 001fb1334 -> f7b0a1602
METRON-1295 Unable to Configure Logging for REST API (nickwallen) closes apache/metron#828 Project: http://git-wip-us.apache.org/repos/asf/metron/repo Commit: http://git-wip-us.apache.org/repos/asf/metron/commit/f7b0a160 Tree: http://git-wip-us.apache.org/repos/asf/metron/tree/f7b0a160 Diff: http://git-wip-us.apache.org/repos/asf/metron/diff/f7b0a160 Branch: refs/heads/master Commit: f7b0a1602f78b862912117a7c99a115a9db0203c Parents: 001fb13 Author: nickwallen <[email protected]> Authored: Tue Nov 7 21:47:20 2017 -0500 Committer: nickallen <[email protected]> Committed: Tue Nov 7 21:47:20 2017 -0500 ---------------------------------------------------------------------- metron-interface/metron-rest/pom.xml | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/metron/blob/f7b0a160/metron-interface/metron-rest/pom.xml ---------------------------------------------------------------------- diff --git a/metron-interface/metron-rest/pom.xml b/metron-interface/metron-rest/pom.xml index ee0d044..fcf35ac 100644 --- a/metron-interface/metron-rest/pom.xml +++ b/metron-interface/metron-rest/pom.xml @@ -105,6 +105,10 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -145,12 +149,34 @@ <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.metron</groupId> <artifactId>metron-hbase-client</artifactId> <version>${project.parent.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.metron</groupId> @@ -243,10 +269,22 @@ <scope>test</scope> <exclusions> <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </exclusion> <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </exclusion> + <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion>
