mirror of https://github.com/apache/maven.git
o execution properties are a per execution set of properties not the system properties. system properties are bad.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@726320 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
37976eec7d
commit
f06bece9f0
|
@ -19,15 +19,14 @@ package org.apache.maven.project;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||
import org.apache.maven.profiles.ProfileManager;
|
||||
import org.apache.maven.shared.model.ModelEventListener;
|
||||
import org.codehaus.plexus.PlexusContainer;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||
import org.apache.maven.profiles.ProfileManager;
|
||||
import org.apache.maven.shared.model.ModelEventListener;
|
||||
|
||||
public class DefaultProjectBuilderConfiguration
|
||||
implements ProjectBuilderConfiguration
|
||||
{
|
||||
|
@ -39,6 +38,7 @@ public class DefaultProjectBuilderConfiguration
|
|||
|
||||
private Properties userProperties;
|
||||
|
||||
//!!jvz Find out who added this. It's wrong, the execution properties are what come from the embedder setup not system properties.
|
||||
private Properties executionProperties = System.getProperties();
|
||||
|
||||
private Date buildStartTime;
|
||||
|
|
Loading…
Reference in New Issue