You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2005/12/01 02:08:29 UTC

svn commit: r350092 - in /maven/maven-1/plugins/trunk/artifact: plugin.properties src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java xdocs/properties.xml

Author: ltheussl
Date: Wed Nov 30 17:08:26 2005
New Revision: 350092

URL: http://svn.apache.org/viewcvs?rev=350092&view=rev
Log:
Change property name

Modified:
    maven/maven-1/plugins/trunk/artifact/plugin.properties
    maven/maven-1/plugins/trunk/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
    maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/artifact/plugin.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/artifact/plugin.properties?rev=350092&r1=350091&r2=350092&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/artifact/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/artifact/plugin.properties Wed Nov 30 17:08:26 2005
@@ -22,4 +22,4 @@
 maven.artifact.manifest.basedir=${plugin.dir}/plugin-resources/templates
 maven.artifact.manifest.template=manifest.vm
 
-maven.deploy.timestamps=true
\ No newline at end of file
+maven.artifact.deploy.timestamps=true
\ No newline at end of file

Modified: maven/maven-1/plugins/trunk/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java?rev=350092&r1=350091&r2=350092&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java (original)
+++ maven/maven-1/plugins/trunk/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java Wed Nov 30 17:08:26 2005
@@ -262,7 +262,7 @@
             destFiles.add( snapshotVersionsFilename );
 
             String deployTimestamp =
-                (String) project.getContext().getVariable( "maven.deploy.timestamps" );
+                (String) project.getContext().getVariable( "maven.artifact.deploy.timestamps" );
             if ( deployTimestamp.equals("true") )
             {
                 srcFiles.add( file );

Modified: maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml?rev=350092&r1=350091&r2=350092&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml Wed Nov 30 17:08:26 2005
@@ -199,7 +199,7 @@
     <section name="Other properties used">
      <table>
         <tr>
-          <td>maven.deploy.timestamps</td>
+          <td>maven.artifact.deploy.timestamps</td>
           <td>
             Specifies whether timestamped versions of artifacts should
             be deployed as well when deploying SNAPSHOT versions.