Andrew Palumbo created MAHOUT-1994: -------------------------------------- Summary: Remove ViennCL jars upon mvn clean. Key: MAHOUT-1994 URL: https://issues.apache.org/jira/browse/MAHOUT-1994 Project: Mahout Issue Type: Bug Affects Versions: 0.13.0 Reporter: Andrew Palumbo Assignee: Andrew Palumbo Priority: Blocker Fix For: 0.13.1
currently, after running `mvn clean` from $MAHOUT_HOME, VinenaCL jars are not removed from the base level directory. add in something similar to: {code} <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> {code} in both {{vienncl}} and {{viennacl-omp}} module pom.xmls -- This message was sent by Atlassian JIRA (v6.4.14#64029)