You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/02/23 11:07:25 UTC

commons-release-plugin git commit: distCheckoutDirectory alias was same as workingDirectory

Repository: commons-release-plugin
Updated Branches:
  refs/heads/master 701579fd3 -> 0d49b4704


distCheckoutDirectory alias was same as workingDirectory


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/0d49b470
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/0d49b470
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/0d49b470

Branch: refs/heads/master
Commit: 0d49b4704debd8a561926b26fa18d658774e98e1
Parents: 701579f
Author: Rob Tompkins <ch...@apache.org>
Authored: Fri Feb 23 06:07:10 2018 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Fri Feb 23 06:07:10 2018 -0500

----------------------------------------------------------------------
 .../release/plugin/mojos/CommonsDistributionStagingMojo.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/0d49b470/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
index 031b541..3d69718 100644
--- a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
+++ b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
@@ -80,7 +80,7 @@ public class CommonsDistributionStagingMojo extends AbstractMojo {
      * The location to which to checkout the dist subversion repository under our working directory, which
      * was given above.
      */
-    @Parameter(defaultValue = "${project.build.directory}/commons-release-plugin/scm", alias = "outputDirectory")
+    @Parameter(defaultValue = "${project.build.directory}/commons-release-plugin/scm", alias = "distCheckoutDirectory")
     private File distCheckoutDirectory;
 
     /**