Updated Branches: refs/heads/flume-1.4 77b8dd63a -> 160937626
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/16093762 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/16093762 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/16093762 Branch: refs/heads/flume-1.4 Commit: 16093762600f7695157fc646119f40afab47b5c6 Parents: 77b8dd6 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:46 2012 -0600 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/16093762/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 80419bf..b0bede9 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>
