Return-Path: Delivered-To: apmail-maven-users-archive@www.apache.org Received: (qmail 8268 invoked from network); 28 Aug 2005 14:50:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Aug 2005 14:50:31 -0000 Received: (qmail 86276 invoked by uid 500); 28 Aug 2005 14:50:25 -0000 Delivered-To: apmail-maven-users-archive@maven.apache.org Received: (qmail 86237 invoked by uid 500); 28 Aug 2005 14:50:25 -0000 Mailing-List: contact users-help@maven.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Maven Users List" Reply-To: "Maven Users List" Delivered-To: mailing list users@maven.apache.org Received: (qmail 86224 invoked by uid 99); 28 Aug 2005 14:50:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Aug 2005 07:50:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of markhobson@gmail.com designates 66.249.82.196 as permitted sender) Received: from [66.249.82.196] (HELO xproxy.gmail.com) (66.249.82.196) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Aug 2005 07:50:40 -0700 Received: by xproxy.gmail.com with SMTP id i32so301472wxd for ; Sun, 28 Aug 2005 07:50:21 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=SXx+CrEqlHyUkLE8VbGrsvzeX1nYOU2hiqoBolb2K2S3q00laMLRDKfG5BtAgL5oH6DVxkKeLsL++Gsp+olCOBtI8x/PmkBvstpTEtV78/vWnD+teqLCKLWKBW4Jx1c78WN+kZKykSiCP2rF7EEhHc6ciS3jKU/DZMSfV07F2LY= Received: by 10.70.58.8 with SMTP id g8mr101628wxa; Sun, 28 Aug 2005 07:50:21 -0700 (PDT) Received: by 10.70.57.19 with HTTP; Sun, 28 Aug 2005 07:50:21 -0700 (PDT) Message-ID: Date: Sun, 28 Aug 2005 15:50:21 +0100 From: Mark Hobson To: Maven Users List Subject: [m2] Installing plugins with different groupIds Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Do you have to configure anything differently for m2 to auto-discover plugins that aren't in the org.apache.maven.plugins groupId? For example, I have a simple plugin POM: =094.0.0 =09a =09a =09maven-plugin =091.0 =09 =09=09 =09=09=09org.apache.maven =09=09=09maven-plugin-api =09=09=092.0-beta-1-SNAPSHOT =09=09 =09 A simple mojo: /** @goal a */ public class AMojo extends AbstractMojo { =09public void execute() throws MojoExecutionException { =09=09getLog().info("--- A ---"); =09} } I then "m2 -DupdateReleaseInfo=3Dtrue install" it and try to run it with "m2 a:a", but it only seems to look for a matching plugin within org.apache.maven.plugins? Also, the plugin-registry.xml even seems to define it with that groupId: org.apache.maven.plugins maven-a-plugin RELEASE Am I missing anything obvious here? Cheers, Mark --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@maven.apache.org For additional commands, e-mail: users-help@maven.apache.org