Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 5de01c680 -> 15b6d22d4


ZEPPELIN-276 Can not start zeppelin-deamon.sh on master

This patch providing fix for https://issues.apache.org/jira/browse/ZEPPELIN-276.

The reason was spark/pom.xml has maven-clean-plugin that clear 
interpreter/spark directory in maven 'clean' lifecycle. which results cleaning 
the directory interpreter/spark/dep created by spark-dependencies submodule, 
which directory supposed to have spark binaries.

Author: Lee moon soo <[email protected]>

Closes #274 from Leemoonsoo/ZEPPELIN-276 and squashes the following commits:

c4ca731 [Lee moon soo] Remove maven-clean-plugin from spark/pom.xml and 
spark-dependencies/pom.xml


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/15b6d22d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/15b6d22d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/15b6d22d

Branch: refs/heads/master
Commit: 15b6d22d4d10bf9a1576212a21b15c3b5c8b93c6
Parents: 5de01c6
Author: Lee moon soo <[email protected]>
Authored: Wed Sep 2 09:42:28 2015 -0700
Committer: Lee moon soo <[email protected]>
Committed: Wed Sep 2 09:52:32 2015 -0700

----------------------------------------------------------------------
 spark-dependencies/pom.xml | 11 -----------
 spark/pom.xml              | 11 -----------
 2 files changed, 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/15b6d22d/spark-dependencies/pom.xml
----------------------------------------------------------------------
diff --git a/spark-dependencies/pom.xml b/spark-dependencies/pom.xml
index c451c39..9d10cf8 100644
--- a/spark-dependencies/pom.xml
+++ b/spark-dependencies/pom.xml
@@ -690,17 +690,6 @@
       </plugin>
 
       <plugin>
-        <artifactId>maven-clean-plugin</artifactId>
-        <configuration>
-          <filesets>
-            <fileset>
-              <directory>../interpreter/spark/dep</directory>
-            </fileset>
-          </filesets>
-        </configuration>
-      </plugin>      
-
-      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.17</version>

http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/15b6d22d/spark/pom.xml
----------------------------------------------------------------------
diff --git a/spark/pom.xml b/spark/pom.xml
index 59da081..26b3b7f 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -345,17 +345,6 @@
       </plugin>
 
       <plugin>
-        <artifactId>maven-clean-plugin</artifactId>
-        <configuration>
-          <filesets>
-            <fileset>
-              <directory>../interpreter/spark</directory>
-            </fileset>
-          </filesets>
-        </configuration>
-      </plugin>      
-
-      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.17</version>

Reply via email to