You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/12/26 17:24:43 UTC

maven git commit: [MNG-5748] keep builderId on copy

Repository: maven
Updated Branches:
  refs/heads/master 328a777cd -> c239f6ea6


[MNG-5748] keep builderId on copy

Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/c239f6ea
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/c239f6ea
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/c239f6ea

Branch: refs/heads/master
Commit: c239f6ea6f65e6475d9afdb88af383105a6b334c
Parents: 328a777
Author: Hervé Boutemy <hb...@apache.org>
Authored: Fri Dec 26 17:24:39 2014 +0100
Committer: Hervé Boutemy <hb...@apache.org>
Committed: Fri Dec 26 17:24:39 2014 +0100

----------------------------------------------------------------------
 .../org/apache/maven/execution/DefaultMavenExecutionRequest.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/c239f6ea/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
----------------------------------------------------------------------
diff --git a/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java b/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
index a38ce15..b417900 100644
--- a/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
+++ b/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
@@ -192,6 +192,7 @@ public class DefaultMavenExecutionRequest
         copy.setNoSnapshotUpdates( original.isNoSnapshotUpdates() );
         copy.setExecutionListener( original.getExecutionListener() );
         copy.setUseLegacyLocalRepository( original.isUseLegacyLocalRepository() );
+        copy.setBuilderId( original.getBuilderId() );
         return copy;
     }