From 536497b2dd517cae6bb41673e44ca1ea1c59bb88 Mon Sep 17 00:00:00 2001 From: ltheussl Date: Thu, 1 Dec 2005 01:08:26 +0000 Subject: [PATCH] Change property name git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@350092 13f79535-47bb-0310-9956-ffa450edef68 --- artifact/plugin.properties | 2 +- .../apache/maven/artifact/deployer/DefaultArtifactDeployer.java | 2 +- artifact/xdocs/properties.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/artifact/plugin.properties b/artifact/plugin.properties index e2b44d65..3c8800ab 100644 --- a/artifact/plugin.properties +++ b/artifact/plugin.properties @@ -22,4 +22,4 @@ maven.artifact.manifest.extensions.add=false 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 diff --git a/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java b/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java index 3ceb57fc..e89f17a8 100644 --- a/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java +++ b/artifact/src/main/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java @@ -262,7 +262,7 @@ public class DefaultArtifactDeployer 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 ); diff --git a/artifact/xdocs/properties.xml b/artifact/xdocs/properties.xml index 215c1500..e743adb9 100644 --- a/artifact/xdocs/properties.xml +++ b/artifact/xdocs/properties.xml @@ -199,7 +199,7 @@
- +
maven.deploy.timestampsmaven.artifact.deploy.timestamps Specifies whether timestamped versions of artifacts should be deployed as well when deploying SNAPSHOT versions.