This is an automated email from the ASF dual-hosted git repository. srowen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new cb53e34343b [MINOR][BUILD] Add `dist`dir to `fileset` of`maven-clean-plugin` cb53e34343b is described below commit cb53e34343b3fb7481e5da98347772a8359d27e1 Author: yangjie01 <yangji...@baidu.com> AuthorDate: Wed Oct 12 18:39:01 2022 -0500 [MINOR][BUILD] Add `dist`dir to `fileset` of`maven-clean-plugin` ### What changes were proposed in this pull request? This pr add add `dist` to `fileset` of`maven-clean-plugin` to make `mvn clean` can delete the `dist` dir which created by `dev/make-distribution.sh`. ### Why are the changes needed? `dev/make-distribution.sh` will create a dist dir but no one cleaned it up. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Local test to confirm that `dist` dir can be cleaned Closes #38215 from LuciferYang/clean-dist. Authored-by: yangjie01 <yangji...@baidu.com> Signed-off-by: Sean Owen <sro...@gmail.com> --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 97e19fa604b..cab9929954b 100644 --- a/pom.xml +++ b/pom.xml @@ -3086,6 +3086,9 @@ <fileset> <directory>spark-warehouse</directory> </fileset> + <fileset> + <directory>dist</directory> + </fileset> </filesets> </configuration> </plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org