Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 be431e9b1 -> c2df17656
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/c2df1765 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/c2df1765 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/c2df1765 Branch: refs/heads/4.x-HBase-0.98 Commit: c2df176565258a2781a1724993cd95340951473f Parents: be431e9 Author: Mujtaba <[email protected]> Authored: Wed Jul 29 13:02:48 2015 -0700 Committer: Mujtaba <[email protected]> Committed: Wed Jul 29 13:02:48 2015 -0700 ---------------------------------------------------------------------- pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/c2df1765/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6865273..13e7cb1 100644 --- a/pom.xml +++ b/pom.xml @@ -750,9 +750,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>
