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:
Jason van Zyl 2008-12-14 00:40:07 +00:00
parent 37976eec7d
commit f06bece9f0
1 changed files with 5 additions and 5 deletions

View File

@ -19,15 +19,14 @@
* 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;