PHOENIX-2155 Add gpg signing to release profile
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/f2b94a7b Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/f2b94a7b Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/f2b94a7b Branch: refs/heads/4.5-HBase-1.1 Commit: f2b94a7bf0463900dcf8a331f2dd12491a0cf622 Parents: fc6f392 Author: Mujtaba <mujt...@apache.org> Authored: Wed Jul 29 13:06:52 2015 -0700 Committer: James Taylor <jtay...@salesforce.com> Committed: Tue Aug 11 18:44:51 2015 -0700 ---------------------------------------------------------------------- pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2b94a7b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2e2c6c2..cce0311 100644 --- a/pom.xml +++ b/pom.xml @@ -788,9 +788,22 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.6</version> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </profile> - </profiles> </project>