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/01825ccf Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/01825ccf Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/01825ccf Branch: refs/heads/4.5-HBase-1.0 Commit: 01825ccf7d8fb1391f92a8cff818f0106dab036e Parents: 58f0236 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:42:11 2015 -0700 ---------------------------------------------------------------------- pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/01825ccf/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 8543eb4..10826f3 100644 --- a/pom.xml +++ b/pom.xml @@ -749,9 +749,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>