Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java')
-rw-r--r--org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
index 9c2dd401..0964eb32 100644
--- a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
+++ b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
@@ -532,7 +532,10 @@ public class LifecycleMappingFactory {
}
private static MavenExecutionRequest newMavenExecutionRequest(MavenExecutionRequest templateRequest) {
- return DefaultMavenExecutionRequest.copy(templateRequest); // TODO ain't nice
+ // TODO ain't nice
+ MavenExecutionRequest copy = DefaultMavenExecutionRequest.copy(templateRequest);
+ copy.setStartTime(templateRequest.getStartTime());
+ return copy;
}
public static AbstractProjectConfigurator createProjectConfigurator(IPluginExecutionMetadata metadata) {

Back to the top