Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.0 7d3dfe9b7 -> 41b82c5ec
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/41b82c5e Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/41b82c5e Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/41b82c5e Branch: refs/heads/4.x-HBase-1.0 Commit: 41b82c5ecc53e24a1d683343262de9397a593cf3 Parents: 7d3dfe9 Author: Mujtaba <[email protected]> Authored: Wed Jul 29 13:05:38 2015 -0700 Committer: Mujtaba <[email protected]> Committed: Wed Jul 29 13:05:38 2015 -0700 ---------------------------------------------------------------------- pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/41b82c5e/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>
