Repository: zeppelin Updated Branches: refs/heads/master a9e7bc381 -> 578fdf3e0
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 Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/578fdf3e Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/578fdf3e Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/578fdf3e Branch: refs/heads/master Commit: 578fdf3e0637e9bdf0c1954cee700d06dad6044f Parents: a9e7bc3 Author: Naveen Subramanian <[email protected]> Authored: Tue Oct 4 17:28:53 2016 +0530 Committer: Jongyoul Lee <[email protected]> Committed: Wed Oct 5 12:24:23 2016 +0900 ---------------------------------------------------------------------- lens/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/578fdf3e/lens/pom.xml ---------------------------------------------------------------------- diff --git a/lens/pom.xml b/lens/pom.xml index 191b238..5ed2caf 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>
