Return-Path: X-Original-To: apmail-maven-commits-archive@www.apache.org Delivered-To: apmail-maven-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E88729EEA for ; Mon, 4 Jun 2012 22:30:35 +0000 (UTC) Received: (qmail 32255 invoked by uid 500); 4 Jun 2012 22:30:35 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 32200 invoked by uid 500); 4 Jun 2012 22:30:35 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 32191 invoked by uid 99); 4 Jun 2012 22:30:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2012 22:30: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; Mon, 04 Jun 2012 22:30:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5AF4923889BF; Mon, 4 Jun 2012 22:30:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1346183 - /maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm Date: Mon, 04 Jun 2012 22:30:14 -0000 To: commits@maven.apache.org From: hboutemy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120604223014.5AF4923889BF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hboutemy Date: Mon Jun 4 22:30:13 2012 New Revision: 1346183 URL: http://svn.apache.org/viewvc?rev=1346183&view=rev Log: explained noticeable differences between plugin tools annotations and javadoc tags Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm?rev=1346183&r1=1346182&r2=1346183&view=diff ============================================================================== --- maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm (original) +++ maven/plugin-tools/trunk/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm Mon Jun 4 22:30:13 2012 @@ -112,3 +112,15 @@ Using Plugin Tools Java5 Annotations [] [] + + Plugin Tools Java 5 Annotations ({{{../../maven-plugin-tools-annotations/index.html}see full example}}) + are named after Plugin Tools Javadoc Tags ({{{../../maven-plugin-tools-java/index.html}see full example}}), + with following little differences: + +*-------------------------------+---------------+ +|| Plugin Tools Javadoc Tags || Plugin Tools Java 5 Annotation || +*-------------------------------+---------------+ +| <<<@goal "goal-name">>> | <<<@Mojo( name = "goal-name" )>>> +*-------------------------------+---------------+ +| <<<@phase "\">>> | <<<@Mojo( defaultPhase = "\" )>>> +*-------------------------------+---------------+