Repository: phoenix Updated Branches: refs/heads/master 7e21b8b98 -> e4ed2d9f6
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/e4ed2d9f Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/e4ed2d9f Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/e4ed2d9f Branch: refs/heads/master Commit: e4ed2d9f6f046ebc510ab3c78a1b3b8a9c39d0aa Parents: 7e21b8b Author: Mujtaba <[email protected]> Authored: Wed Jul 29 13:06:52 2015 -0700 Committer: Mujtaba <[email protected]> Committed: Wed Jul 29 13:06:52 2015 -0700 ---------------------------------------------------------------------- pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/e4ed2d9f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ac0e5c7..bda6628 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>
