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 bcb93cf Build thrashing
bcb93cf is described below
commit bcb93cf94d04a4e4484d052f4df4d9e28b2a9988
Author: Andrew Musselman <[email protected]>
AuthorDate: Thu May 9 22:25:32 2019 -0700
Build thrashing
---
pom.xml | 55 +++++++++++++++++++++++++++++++++++++------------------
1 file changed, 37 insertions(+), 18 deletions(-)
diff --git a/pom.xml b/pom.xml
index 2c8a866..eab7305 100644
--- a/pom.xml
+++ b/pom.xml
@@ -481,24 +481,43 @@
</execution>
</executions>
</plugin>
- <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>
+ <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>
+
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>