You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/10/01 17:55:34 UTC

git commit: [SPARK-3757] mvn clean doesn't delete some files

Repository: spark
Updated Branches:
  refs/heads/master 3888ee2f3 -> 0bfd3afb0


[SPARK-3757] mvn clean doesn't delete some files

Added directory to be deleted into maven-clean-plugin in pom.xml.

Author: Masayoshi TSUZUKI <ts...@oss.nttdata.co.jp>

Closes #2613 from tsudukim/feature/SPARK-3757 and squashes the following commits:

8804bfc [Masayoshi TSUZUKI] Modified indent.
67c7171 [Masayoshi TSUZUKI] [SPARK-3757] mvn clean doesn't delete some files


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0bfd3afb
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0bfd3afb
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0bfd3afb

Branch: refs/heads/master
Commit: 0bfd3afb00936b0f46ba613be0982e38bc7032b5
Parents: 3888ee2
Author: Masayoshi TSUZUKI <ts...@oss.nttdata.co.jp>
Authored: Wed Oct 1 08:55:04 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Wed Oct 1 08:55:04 2014 -0700

----------------------------------------------------------------------
 core/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0bfd3afb/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index e012c5e..a5a1780 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -323,6 +323,17 @@
         </configuration>
       </plugin>
       <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>${basedir}/../python/build</directory>
+            </fileset>
+          </filesets>
+          <verbose>true</verbose>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
         <executions>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org