Updated Branches: refs/heads/flume-1.3.0 10e489919 -> 08a1eed94
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/08a1eed9 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/08a1eed9 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/08a1eed9 Branch: refs/heads/flume-1.3.0 Commit: 08a1eed94172cb661c3ae960cf26bd17c076a814 Parents: 10e4899 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:50 2012 -0600 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/08a1eed9/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 24e45a4..9b5ca61 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>
