Repository: zeppelin Updated Branches: refs/heads/branch-0.6 8bf20aa89 -> f2669149a
ZEPPELIN-1410 SLF4J: Class path contains multiple SLF4J bindings SLF4J is having 2 depedencies in classpath. one is slf4j-log4j12 and another is logback. The Logback is added in class path by apache lens projec used in lens module. I have added exclusion to remove that in this PR ### PR type Bug Fix ### JIRA * [ZEPPELIN-1410](https://issues.apache.org/jira/browse/ZEPPELIN-1410) SLF4J: Class path contains multiple SLF4J bindings ### Fix This removes logback in the package of zeppelin. But still logback is shown in install logs. This is caused by cobertura plugin. Please look into [ZEPPELIN-1410](https://issues.apache.org/jira/browse/ZEPPELIN-1410) for more details Author: Naveen Subramanian <[email protected]> Closes #1482 from snaveenp/1410-slf4j-bindings and squashes the following commits: a7af642 [Naveen Subramanian] added exclusion for logback dependency to resolve conflict with slf4j-log4j12 (cherry picked from commit 578fdf3e0637e9bdf0c1954cee700d06dad6044f) Signed-off-by: Mina Lee <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/f2669149 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/f2669149 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/f2669149 Branch: refs/heads/branch-0.6 Commit: f2669149a7d6363fd2fabc0f3d0cb72e6dc7a7c5 Parents: 8bf20aa Author: Naveen Subramanian <[email protected]> Authored: Tue Oct 4 17:28:53 2016 +0530 Committer: Mina Lee <[email protected]> Committed: Wed Oct 5 13:10:39 2016 +0900 ---------------------------------------------------------------------- lens/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/f2669149/lens/pom.xml ---------------------------------------------------------------------- diff --git a/lens/pom.xml b/lens/pom.xml index 5cf2762..029da6e 100644 --- a/lens/pom.xml +++ b/lens/pom.xml @@ -72,6 +72,16 @@ <groupId>org.apache.lens</groupId> <artifactId>lens-client</artifactId> <version>${lens.version}</version> + <exclusions> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
