Repository: mahout Updated Branches: refs/heads/master a799ead59 -> 36c15d8a6
MAHOUT-1994: clean viennacl jars on 'mvn clean -Pviennacl -Phadoop2'. closes apache/mahout#328 Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/36c15d8a Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/36c15d8a Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/36c15d8a Branch: refs/heads/master Commit: 36c15d8a633f6836b35578e9915c96f4ca71ac55 Parents: a799ead Author: Andrew Palumbo <[email protected]> Authored: Tue Jun 27 15:01:30 2017 -0700 Committer: Andrew Palumbo <[email protected]> Committed: Tue Jun 27 15:01:30 2017 -0700 ---------------------------------------------------------------------- viennacl-omp/pom.xml | 18 ++++++++++++++++-- viennacl/pom.xml | 17 ++++++++++++++++- 2 files changed, 32 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/36c15d8a/viennacl-omp/pom.xml ---------------------------------------------------------------------- diff --git a/viennacl-omp/pom.xml b/viennacl-omp/pom.xml index 296c5c3..8c3463e 100644 --- a/viennacl-omp/pom.xml +++ b/viennacl-omp/pom.xml @@ -201,8 +201,22 @@ </execution> </executions> </plugin> - - + <!-- delete jars on claen in top directory, which is MAHOUT_HOME --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-native-viennacl-omp*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/mahout/blob/36c15d8a/viennacl/pom.xml ---------------------------------------------------------------------- diff --git a/viennacl/pom.xml b/viennacl/pom.xml index f624c83..bb8eebc 100644 --- a/viennacl/pom.xml +++ b/viennacl/pom.xml @@ -202,7 +202,22 @@ </execution> </executions> </plugin> - + <!-- delete jars on claen in top directory, which is MAHOUT_HOME --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.0.0</version> + <configuration> + <filesets> + <fileset> + <directory>../</directory> + <includes> + <include>mahout-native-viennacl_*.jar</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> </plugins> </build>
