This is an automated email from the ASF dual-hosted git repository.
akm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/master by this push:
new 7c7aca7 Build thrashing
7c7aca7 is described below
commit 7c7aca770e1cb612c542b553f94bc7b406176e30
Author: Andrew Musselman <[email protected]>
AuthorDate: Thu May 9 22:06:25 2019 -0700
Build thrashing
---
pom.xml | 52 +++++++++++++++++-----------------------------------
1 file changed, 17 insertions(+), 35 deletions(-)
diff --git a/pom.xml b/pom.xml
index 57ac5cd..2c8a866 100644
--- a/pom.xml
+++ b/pom.xml
@@ -482,41 +482,23 @@
</executions>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>bin-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <skipAssembly>${mahout.skip.distribution}</skipAssembly>
- <descriptors>
- <descriptor>buildtools/assembly/bin.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- <appendAssemblyId>false</appendAssemblyId>
- </configuration>
- </execution>
- <execution>
- <id>src-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <skipAssembly>${mahout.skip.distribution}</skipAssembly>
- <descriptors>
- <descriptor>buildtools/assembly/src.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- <appendAssemblyId>true</appendAssemblyId>
- </configuration>
- </execution>
- </executions>
- </plugin>
+<artifactId>maven-assembly-plugin</artifactId>
+<version>3.1.1</version>
+<configuration>
+<descriptorRefs>
+<descriptorRef>jar-with-dependencies</descriptorRef>
+</descriptorRefs>
+</configuration>
+<executions>
+<execution>
+<id>make-assembly</id> <!-- this is used for inheritance merges -->
+<phase>package</phase> <!-- bind to the packaging phase -->
+<goals>
+<goal>single</goal>
+</goals>
+</execution>
+</executions>
+</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>