Repository: mahout Updated Branches: refs/heads/master 9c69c28af -> a8a719efa
MAHOUT-1953 Delete Jars in top directory on mvn clean closes apache/mahout#312 Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/ae8e3bbe Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/ae8e3bbe Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/ae8e3bbe Branch: refs/heads/master Commit: ae8e3bbe62acb5473ea59e78e15982ad465b9334 Parents: 08e0260 Author: rawkintrevo <[email protected]> Authored: Thu Apr 27 22:54:09 2017 -0500 Committer: rawkintrevo <[email protected]> Committed: Thu Apr 27 22:54:09 2017 -0500 ---------------------------------------------------------------------- flink/pom.xml | 16 ++++++++++++++++ h2o/pom.xml | 17 ++++++++++++++++- hdfs/pom.xml | 17 ++++++++++++++++- math-scala/pom.xml | 17 ++++++++++++++++- math/pom.xml | 16 ++++++++++++++++ mr/pom.xml | 17 ++++++++++++++++- spark/pom.xml | 17 ++++++++++++++++- 7 files changed, 112 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/flink/pom.xml ---------------------------------------------------------------------- diff --git a/flink/pom.xml b/flink/pom.xml index 45b27cf..4d21166 100644 --- a/flink/pom.xml +++ b/flink/pom.xml @@ -125,6 +125,22 @@ <argLine>-Xmx4g</argLine> </configuration> </plugin> + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-flink*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/h2o/pom.xml ---------------------------------------------------------------------- diff --git a/h2o/pom.xml b/h2o/pom.xml index 5cb25e1..22aa1a3 100644 --- a/h2o/pom.xml +++ b/h2o/pom.xml @@ -137,7 +137,22 @@ </execution> </executions> </plugin> - + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-h2o*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/hdfs/pom.xml ---------------------------------------------------------------------- diff --git a/hdfs/pom.xml b/hdfs/pom.xml index 37fcb89..2d909a2 100644 --- a/hdfs/pom.xml +++ b/hdfs/pom.xml @@ -100,7 +100,22 @@ </supplementalModels> </configuration> </plugin> - + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-hdfs*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/math-scala/pom.xml ---------------------------------------------------------------------- diff --git a/math-scala/pom.xml b/math-scala/pom.xml index 02fe265..6b5f85d 100644 --- a/math-scala/pom.xml +++ b/math-scala/pom.xml @@ -133,7 +133,22 @@ </execution> </executions> </plugin> - + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-math-scala*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/math/pom.xml ---------------------------------------------------------------------- diff --git a/math/pom.xml b/math/pom.xml index 2f088a0..9f437fc 100644 --- a/math/pom.xml +++ b/math/pom.xml @@ -175,6 +175,22 @@ <!--</execution>--> <!--</executions>--> <!--</plugin>--> + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-math*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/mr/pom.xml ---------------------------------------------------------------------- diff --git a/mr/pom.xml b/mr/pom.xml index b9cd010..1ce526e 100644 --- a/mr/pom.xml +++ b/mr/pom.xml @@ -120,7 +120,22 @@ </supplementalModels> </configuration> </plugin> - + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-mr*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/mahout/blob/ae8e3bbe/spark/pom.xml ---------------------------------------------------------------------- diff --git a/spark/pom.xml b/spark/pom.xml index e08cbf3..cc19b3f 100644 --- a/spark/pom.xml +++ b/spark/pom.xml @@ -156,7 +156,22 @@ </execution> </executions> </plugin> - + <!-- remove jars from top directory on clean --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-spark*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build>
