This is an automated email from the ASF dual-hosted git repository. apalumbo pushed a commit to branch mahout-14.1 in repository https://gitbox.apache.org/repos/asf/mahout.git
commit f6bfc4740c0f43c4c0e35a28888299aed0b29fc7 Author: Andrew Palumbo <[email protected]> AuthorDate: Fri Oct 18 04:57:02 2019 -0700 release recycling --- pom.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ src/pom.xml | 1 + 2 files changed, 45 insertions(+) diff --git a/pom.xml b/pom.xml index 775ceed..e50634b 100644 --- a/pom.xml +++ b/pom.xml @@ -461,6 +461,8 @@ <skipTests>true</skipTests> <pmd.skip>true</pmd.skip> <checkstyle.skip>true</checkstyle.skip> + <skipAssembly>false</skipAssembly> + </properties> </profile> <profile> @@ -612,6 +614,48 @@ </profiles> <reporting> <plugins> + + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version></version> + <executions> + <execution> + <id>bin-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <skipAssembly>${mahout.skip.distribution}</skipAssembly> + <descriptors> + <descriptor>${project.basedir}/src/main/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>${project.basedir}/src/main/assembly/src.xml</descriptor> + </descriptors> + <tarLongFileMode>gnu</tarLongFileMode> + <appendAssemblyId>true</appendAssemblyId> + </configuration> + </execution> + </executions> + </plugin> + + + <!-- surefire runs unit tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/src/pom.xml b/src/pom.xml index 080649a..3875904 100644 --- a/src/pom.xml +++ b/src/pom.xml @@ -31,6 +31,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> + <version>2.5.3</version> <executions> <execution> <id>bin-assembly</id>
