You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/11/03 14:56:10 UTC

svn commit: r1405336 - /maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java

Author: hboutemy
Date: Sat Nov  3 13:56:10 2012
New Revision: 1405336

URL: http://svn.apache.org/viewvc?rev=1405336&view=rev
Log:
${plugin} is only recognized by Maven 3

Modified:
    maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java

Modified: maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java?rev=1405336&r1=1405335&r2=1405336&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java Sat Nov  3 13:56:10 2012
@@ -30,7 +30,7 @@ import java.lang.annotation.Target;
  * Used to configure injection of Plexus components by
  * <a href="/ref/current/maven-core/apidocs/org/apache/maven/plugin/MavenPluginManager.html">
  * <code>MavenPluginManager.getConfiguredMojo(...)</code></a> and special Maven
- * objects as well: <code>session</code>, <code>project</code>, <code>mojoExecution</code>, <code>plugin</code>,
+ * objects as well: <code>session</code>, <code>project</code>, <code>mojoExecution</code>, <code>plugin</code> (Maven-3 only),
  * <code>settings</code>.
  *
  * @author Olivier Lamy