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 ff691720ba9b6a825860ec88b177c5f282b5dfd4 Author: Andrew Palumbo <[email protected]> AuthorDate: Sun Nov 3 02:08:01 2019 -0800 moved some settings.xml around to accomodate maven 3.3.9 --- pom.xml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c4ac00b..5370df7 100644 --- a/pom.xml +++ b/pom.xml @@ -589,6 +589,7 @@ </execution> </executions> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> @@ -601,8 +602,28 @@ </execution> </executions> </plugin> + <!-- We want to sign the artifact, the POM, and all attached artifacts --> - <plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.6</version> + <executions> + <execution> + <id>sign-release-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + <configuration> + <keyname>${gpg.keyname}</keyname> + <passphraseServerId>${gpg.passphrase}</passphraseServerId> + </configuration> + </execution> + </executions> + </plugin> + + <!--<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> @@ -613,7 +634,7 @@ </goals> </execution> </executions> - </plugin> + </plugin>--> </plugins> </build> </profile>
