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 48e336d0d3e4e04c3114983e2a37ac0bd3a61f1f Author: Andrew Palumbo <[email protected]> AuthorDate: Sat Nov 2 19:35:42 2019 -0700 move release-profile back into override release-profile remove redundant srec buiuld. --- pom.xml | 98 ++++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 35 deletions(-) diff --git a/pom.xml b/pom.xml index 5655e80..7838225 100644 --- a/pom.xml +++ b/pom.xml @@ -104,7 +104,6 @@ </scm> <properties> - <!--<skipTests>false</skipTests>--> <apache-rat.plugin.version>0.13</apache-rat.plugin.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> @@ -143,14 +142,9 @@ <scalatest.maven.plugin.version>2.0.0</scalatest.maven.plugin.version> <mahout.collection.codegen.plugin.version>1.0</mahout.collection.codegen.plugin.version> <!-- - - <scala.compat.version>2.10</scala.compat.version> - <scala.version>2.10.4</scala.version> - <spark.version>1.6.3</spark.version> <flink.version>1.1.4</flink.version> <h2o.version>0.1.25</h2o.version> <jackson.version>2.7.4</jackson.version> - <hadoop.version>2.4.1</hadoop.version> <hadoop.classifier>hadoop2</hadoop.classifier> --> </properties> @@ -518,34 +512,6 @@ </build> </profile> <profile> - <id>set.eclipse.output</id> - <properties> - <eclipse.outputDirectory>${basedir}/eclipse-classes</eclipse.outputDirectory> - </properties> - </profile> - <profile> - <id>setup.eclipse</id> - <build> - <defaultGoal>process-test-sources</defaultGoal> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <version>2.10</version> - <executions> - <execution> - <id>setup.eclipse.project</id> - <phase>process-test-sources</phase> - <goals> - <goal>eclipse</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> <id>ci</id> <activation> <activeByDefault>false</activeByDefault> @@ -574,7 +540,69 @@ </plugins> </build> </profile> -</profiles> + + <profile> + <id>apache-release</id> + <build> + <plugins> + <plugin> + <inherited>true</inherited> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <executions> + <execution> + <id>deploy-artifacts</id> + <goals> + <goal>deploy</goal> + </goals> + </execution> + </executions> + <configuration> + <updateReleaseInfo>true</updateReleaseInfo> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- We want to sign the artifact, the POM, and all attached artifacts --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <id>sign-release-artifacts</id> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <!-- END SNIPPET: release-profile --> + </profiles> <reporting> <plugins>
