Author: dennisl
Date: Sun Nov 21 19:30:21 2010
New Revision: 1037535

URL: http://svn.apache.org/viewvc?rev=1037535&view=rev
Log:
[MSHARED-160] Replace pom.* properties with project.* properties in all 
maven-archiver website examples

Modified:
    maven/shared/trunk/maven-archiver/src/site/apt/examples/manifest.apt
    maven/shared/trunk/maven-archiver/src/site/apt/examples/manifestEntries.apt
    maven/shared/trunk/maven-archiver/src/site/xdoc/index.xml

Modified: maven/shared/trunk/maven-archiver/src/site/apt/examples/manifest.apt
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-archiver/src/site/apt/examples/manifest.apt?rev=1037535&r1=1037534&r2=1037535&view=diff
==============================================================================
--- maven/shared/trunk/maven-archiver/src/site/apt/examples/manifest.apt 
(original)
+++ maven/shared/trunk/maven-archiver/src/site/apt/examples/manifest.apt Sun 
Nov 21 19:30:21 2010
@@ -83,13 +83,13 @@ Archiver-Version: Plexus Archiver
 Created-By: Apache Maven
 Built-By: ${user.name}
 Build-Jdk: ${java.version}
-Specification-Title: ${pom.name}
-Specification-Version: ${pom.version}
-Specification-Vendor: ${pom.organization.name}
-Implementation-Title: ${pom.name}
-Implementation-Version: ${pom.version}
-Implementation-Vendor-Id: ${pom.groupId}
-Implementation-Vendor: ${pom.organization.name}
+Specification-Title: ${project.name}
+Specification-Version: ${project.version}
+Specification-Vendor: ${project.organization.name}
+Implementation-Title: ${project.name}
+Implementation-Version: ${project.version}
+Implementation-Vendor-Id: ${project.groupId}
+Implementation-Vendor: ${project.organization.name}
 +-----+
 
  <<Note:>> If your pom.xml does not have an 
<<<\<organization\>>>>/<<<\<name\>>>>
@@ -98,4 +98,4 @@ Implementation-Vendor: ${pom.organizatio
 
  <<Note:>> If your pom.xml does not have a <<<\<name\>>>> element, then the
  <<<Specification-Title>>> and <<<Implementation-Title>>> entries will have
- "Unnamed - $\{pom.groupId\}:$\{pom.artifactId\}:$\{pom.version\}" as their 
value.
+ "Unnamed - $\{project.groupId\}:$\{project.artifactId\}:$\{project.version\}" 
as their value.

Modified: 
maven/shared/trunk/maven-archiver/src/site/apt/examples/manifestEntries.apt
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-archiver/src/site/apt/examples/manifestEntries.apt?rev=1037535&r1=1037534&r2=1037535&view=diff
==============================================================================
--- maven/shared/trunk/maven-archiver/src/site/apt/examples/manifestEntries.apt 
(original)
+++ maven/shared/trunk/maven-archiver/src/site/apt/examples/manifestEntries.apt 
Sun Nov 21 19:30:21 2010
@@ -50,7 +50,7 @@ Manifest Entries
           <archive>
             <manifestEntries>
               <mode>development</mode>
-              <url>${pom.url}</url>
+              <url>${project.url}</url>
             </manifestEntries>
           </archive>
         </configuration>

Modified: maven/shared/trunk/maven-archiver/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-archiver/src/site/xdoc/index.xml?rev=1037535&r1=1037534&r2=1037535&view=diff
==============================================================================
--- maven/shared/trunk/maven-archiver/src/site/xdoc/index.xml (original)
+++ maven/shared/trunk/maven-archiver/src/site/xdoc/index.xml Sun Nov 21 
19:30:21 2010
@@ -195,10 +195,10 @@
             <td>
               If the manifest will contain these entries:
               <source>
-Implementation-Title: ${pom.name}
-Implementation-Version: ${pom.version}
-Implementation-Vendor-Id: ${pom.groupId}
-Implementation-Vendor: ${pom.organization.name}
+Implementation-Title: ${project.name}
+Implementation-Version: ${project.version}
+Implementation-Vendor-Id: ${project.groupId}
+Implementation-Vendor: ${project.organization.name}
               </source>
               The default value is <code>false</code>.
             </td>
@@ -210,9 +210,9 @@ Implementation-Vendor: ${pom.organizatio
             <td>
               If the manifest will contain these entries:
               <source>
-Specification-Title: ${pom.name}
-Specification-Version: ${pom.version}
-Specification-Vendor: ${pom.organization.name}
+Specification-Title: ${project.name}
+Specification-Version: ${project.version}
+Specification-Vendor: ${project.organization.name}
               </source>
               The default value is <code>false</code>.
             </td>
@@ -330,9 +330,9 @@ Specification-Vendor: ${pom.organization
           following content:
         </p>
         <source>
-version=${pom.version}
-groupId=${pom.groupId}
-artifactId=${pom.artifactId}
+version=${project.version}
+groupId=${project.groupId}
+artifactId=${project.artifactId}
         </source>
       </subsection>
     </section>


Reply via email to