Updated Branches: refs/heads/trunk 26b637a49 -> bf43d2e18
FLUME-1729: Add sign profile to sign/calculate hash of jars (Brock Noland via Brock Noland) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/bf43d2e1 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/bf43d2e1 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/bf43d2e1 Branch: refs/heads/trunk Commit: bf43d2e1884ae21d7a874dccce97c41444738dc3 Parents: 26b637a Author: Brock Noland <[email protected]> Authored: Mon Nov 19 11:16:33 2012 -0600 Committer: Brock Noland <[email protected]> Committed: Mon Nov 19 11:16:33 2012 -0600 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/bf43d2e1/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 875c4e5..53ac96b 100644 --- a/pom.xml +++ b/pom.xml @@ -155,6 +155,28 @@ limitations under the License. </activation> </profile> + + <profile> + <id>sign</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + + <!-- maven 2 & 3 compat for reporting plugin --> <profile> <id>maven-3</id>
