From abd5d033d609708cf7517a7bb3424c7b97272a1c Mon Sep 17 00:00:00 2001 From: Jason van Zyl Date: Sun, 14 Dec 2008 04:02:36 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@726351 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/maven/execution/DefaultMavenExecutionRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4b2bfa128c..7317081753 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 @@ -55,7 +55,7 @@ public class DefaultMavenExecutionRequest private List profiles; - private List pluginGroups; + private List pluginGroups = new ArrayList(); private boolean usePluginUpdateOverride;