Author: schor
Date: Fri Apr 23 13:31:28 2010
New Revision: 937287

URL: http://svn.apache.org/viewvc?rev=937287&view=rev
Log:
[UIMA-1756] requirement to use project.xxx, in maven 3

Modified:
    uima/site/trunk/uima-website/docs/doc-uima-pears.html
    uima/site/trunk/uima-website/docs/maven-design.html
    uima/site/trunk/uima-website/xdocs/maven-design.xml

Modified: uima/site/trunk/uima-website/docs/doc-uima-pears.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/doc-uima-pears.html?rev=937287&r1=937286&r2=937287&view=diff
==============================================================================
--- uima/site/trunk/uima-website/docs/doc-uima-pears.html (original)
+++ uima/site/trunk/uima-website/docs/doc-uima-pears.html Fri Apr 23 13:31:28 
2010
@@ -361,8 +361,8 @@
         <phase>package</phase>
         <configuration>
            <classpath>$main_root/lib/sample.jar</classpath>
-           
<mainComponentDesc>desc/${artifactId}.xml</mainComponentDesc>
-           <componentId>${artifactId}</componentId>
+           
<mainComponentDesc>desc/${project.artifactId}.xml</mainComponentDesc>
+           <componentId>${project.artifactId}</componentId>
            <datapath>$main_root/resources</datapath>
         </configuration>
         <goals>

Modified: uima/site/trunk/uima-website/docs/maven-design.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/maven-design.html?rev=937287&r1=937286&r2=937287&view=diff
==============================================================================
--- uima/site/trunk/uima-website/docs/maven-design.html (original)
+++ uima/site/trunk/uima-website/docs/maven-design.html Fri Apr 23 13:31:28 2010
@@ -214,6 +214,13 @@ and aggregation POMs do not do common fa
         parent.  Doing this is a recommended best practice.</li>      
     </ul>
     </p>
+                                                <p>Maven 3 has more 
requirements on POMs
+    <p>A transition to Maven 3 is occuring in 2010.  The Eclipse plugin, 
m2eclipse, "embeds" 
+      Maven 3 already.</p>
+    <ul>
+      <li>Property names have to include their path from project, etc.   For 
instance, you cannot use
+        ${version}, you have to use ${project.version}.</li>
+    </ul></p>
                             </blockquote>
         </p>
       </td></tr>

Modified: uima/site/trunk/uima-website/xdocs/maven-design.xml
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/xdocs/maven-design.xml?rev=937287&r1=937286&r2=937287&view=diff
==============================================================================
--- uima/site/trunk/uima-website/xdocs/maven-design.xml (original)
+++ uima/site/trunk/uima-website/xdocs/maven-design.xml Fri Apr 23 13:31:28 2010
@@ -73,6 +73,13 @@ and aggregation POMs do not do common fa
         parent.  Doing this is a recommended best practice.</li>      
     </ul>
     </p>
+  <p>Maven 3 has more requirements on POMs
+    <p>A transition to Maven 3 is occuring in 2010.  The Eclipse plugin, 
m2eclipse, "embeds" 
+      Maven 3 already.</p>
+    <ul>
+      <li>Property names have to include their path from project, etc.   For 
instance, you cannot use
+        ${version}, you have to use ${project.version}.</li>
+    </ul></p>
 </section>
 </body>
 </document>
\ No newline at end of file


Reply via email to