aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorMasayoshi TSUZUKI <tsudukim@oss.nttdata.co.jp>2014-10-01 08:55:04 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-10-01 08:55:04 -0700
commit0bfd3afb00936b0f46ba613be0982e38bc7032b5 (patch)
tree8105d7fa3d961ff9328769ecbf20ba5f2d39d46d /core/pom.xml
parent3888ee2f3875f7053f63f70190670247e5c77383 (diff)
downloadspark-0bfd3afb00936b0f46ba613be0982e38bc7032b5.tar.gz
spark-0bfd3afb00936b0f46ba613be0982e38bc7032b5.tar.bz2
spark-0bfd3afb00936b0f46ba613be0982e38bc7032b5.zip
[SPARK-3757] mvn clean doesn't delete some files
Added directory to be deleted into maven-clean-plugin in pom.xml. Author: Masayoshi TSUZUKI <tsudukim@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
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index e012c5e673..a5a178079b 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>