This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new c7f9089 [ZEPPELIN-4643]. Fail to start zeppelin server because zeppelin-interpreter-shaded is under lib c7f9089 is described below commit c7f908937847916d922b20df99707a79bad2448d Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Wed Feb 26 12:51:52 2020 +0800 [ZEPPELIN-4643]. Fail to start zeppelin server because zeppelin-interpreter-shaded is under lib ### What is this PR for? This PR just exclude zeppelin-interpreter-shaded from `zeppelin-markdown` in `zeppelin-jupyter/pom.xml`. So that we won't include it under lib when building zeppelin distribution. ### What type of PR is it? [Bug Fix] ### Todos * [ ] - Task ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-4643 ### How should this be tested? * Tested manaully ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Jeff Zhang <zjf...@apache.org> Closes #3661 from zjffdu/ZEPPELIN-4643 and squashes the following commits: 4189ecd18 [Jeff Zhang] [ZEPPELIN-4643]. Fail to start zeppelin server because zeppelin-interpreter-shaded is under lib --- zeppelin-jupyter/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zeppelin-jupyter/pom.xml b/zeppelin-jupyter/pom.xml index 25cfb37..f6abc86 100644 --- a/zeppelin-jupyter/pom.xml +++ b/zeppelin-jupyter/pom.xml @@ -58,6 +58,12 @@ <groupId>org.apache.zeppelin</groupId> <artifactId>zeppelin-markdown</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.zeppelin</groupId> + <artifactId>zeppelin-interpreter-shaded</artifactId> + </exclusion> + </exclusions> </dependency> <!-- Test -->