You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2008/12/14 05:02:37 UTC

svn commit: r726351 - /maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

Author: jvanzyl
Date: Sat Dec 13 20:02:36 2008
New Revision: 726351

URL: http://svn.apache.org/viewvc?rev=726351&view=rev
Log:
o make sure there is an empty list for the plugin groups, the prefix loader needs it and was expecting it coming from the settings.

Modified:
    maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

Modified: maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java?rev=726351&r1=726350&r2=726351&view=diff
==============================================================================
--- maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java (original)
+++ maven/components/trunk/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java Sat Dec 13 20:02:36 2008
@@ -55,7 +55,7 @@
 
     private List profiles;
 
-    private List pluginGroups;
+    private List pluginGroups = new ArrayList();
 
     private boolean usePluginUpdateOverride;