You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2010/08/19 22:28:19 UTC

svn commit: r987298 - in /maven/plugins/trunk/maven-jar-plugin: pom.xml src/site/apt/examples/manifest-customization.apt.vm

Author: dennisl
Date: Thu Aug 19 20:28:19 2010
New Revision: 987298

URL: http://svn.apache.org/viewvc?rev=987298&view=rev
Log:
o Use a property in the POM for the version of Maven Archiver, and make the documentation update itself automatically.

Modified:
    maven/plugins/trunk/maven-jar-plugin/pom.xml
    maven/plugins/trunk/maven-jar-plugin/src/site/apt/examples/manifest-customization.apt.vm

Modified: maven/plugins/trunk/maven-jar-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/pom.xml?rev=987298&r1=987297&r2=987298&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-jar-plugin/pom.xml Thu Aug 19 20:28:19 2010
@@ -63,6 +63,7 @@ under the License.
   </issueManagement>
 
   <properties>
+    <mavenArchiverVersion>2.4.1</mavenArchiverVersion>
     <mavenVersion>2.0.6</mavenVersion>
   </properties>
 
@@ -91,7 +92,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-archiver</artifactId>
-      <version>2.4.1</version>
+      <version>${mavenArchiverVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

Modified: maven/plugins/trunk/maven-jar-plugin/src/site/apt/examples/manifest-customization.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/site/apt/examples/manifest-customization.apt.vm?rev=987298&r1=987297&r2=987298&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/site/apt/examples/manifest-customization.apt.vm (original)
+++ maven/plugins/trunk/maven-jar-plugin/src/site/apt/examples/manifest-customization.apt.vm Thu Aug 19 20:28:19 2010
@@ -45,7 +45,7 @@ Manifest customization
   element. Below you will find some of the configuration options that are
   available. For more info see the
   {{{http://maven.apache.org/shared/maven-archiver/index.html}Maven Archiver reference}}.
-  This version of Maven JAR Plugin uses Maven Archiver 2.4.
+  This version of Maven JAR Plugin uses Maven Archiver ${mavenArchiverVersion}.
 
 +-----------------+
 <project>