You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/03/12 08:46:27 UTC

svn commit: r636240 - /maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml

Author: bentmann
Date: Wed Mar 12 00:46:24 2008
New Revision: 636240

URL: http://svn.apache.org/viewvc?rev=636240&view=rev
Log:
[MNG-3453] Avoid references to the deprecated expression "${project.build.resources}"

Modified:
    maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml

Modified: maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml?rev=636240&r1=636239&r2=636240&view=diff
==============================================================================
--- maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml (original)
+++ maven/site/trunk/src/site/xdoc/developers/mojo-api-specification.xml Wed Mar 12 00:46:24 2008
@@ -578,7 +578,7 @@
           <td>No</td>
           <td>Specifies the expression used to calculate the value to be injected into this parameter of
             the Mojo at buildtime. This is commonly used to refer to specific elements in the POM, such
-            as ${project.build.resources}, which refers to the List of resources meant to accompany the
+            as ${project.resources}, which refers to the list of resources meant to accompany the
             classes in the resulting jar file. The default value is used when the expression evaluates
             to <code>null</code> . <i>NOTE: If not specified, an expression of ${&lt;name&gt;}
               is assumed, which can only be satisfied from POM configuration or System properties. The