Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4702C10D4D for ; Thu, 20 Jun 2013 10:46:42 +0000 (UTC) Received: (qmail 77900 invoked by uid 500); 20 Jun 2013 10:46:39 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 77851 invoked by uid 500); 20 Jun 2013 10:46:37 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 77769 invoked by uid 99); 20 Jun 2013 10:46:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jun 2013 10:46:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jun 2013 10:46:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B995E2388847; Thu, 20 Jun 2013 10:46:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1494920 - /commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java Date: Thu, 20 Jun 2013 10:46:15 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130620104615.B995E2388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Thu Jun 20 10:46:15 2013 New Revision: 1494920 URL: http://svn.apache.org/r1494920 Log: Explain why cannot extend AbstractGpgMojo directly Modified: commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java Modified: commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java URL: http://svn.apache.org/viewvc/commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java?rev=1494920&r1=1494919&r2=1494920&view=diff ============================================================================== --- commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java (original) +++ commons/sandbox/commons-gpg-plugin/trunk/src/main/java/org/apache/commons/plugins/gpg/AbstractGpgMojo.java Thu Jun 20 10:46:15 2013 @@ -31,7 +31,8 @@ import org.apache.maven.project.MavenPro /** * Copy of org.apache.maven.plugin.gpg.AbstractGpgMojo moved to o.a.c package. - * Unfortunately, cannot extend Mojos in another plugin. + * Unfortunately, AbstractGpgMojo does not use annotations, so it cannot be extended externally. + * Also, we need access to the method newSigner() which is package protected. * The hope is that this functionality will eventually be added to the gpg plugin. */ public abstract class AbstractGpgMojo