Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Patch Submitted:Yes
-
Number of attachments :
Description
-
-
- Eclipse Workspace Patch 1.0
#P gwt-maven-plugin
Index: src/main/java/org/codehaus/mojo/gwt/shell/RunMojo.java
===================================================================
- src/main/java/org/codehaus/mojo/gwt/shell/RunMojo.java (revision 37066)
+++ src/main/java/org/codehaus/mojo/gwt/shell/RunMojo.java (working copy)
@@ -23,6 +23,7 @@
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
+import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
@@ -231,8 +232,11 @@
*/
protected ArchiverManager archiverManager;
- Eclipse Workspace Patch 1.0
-
+ /**
+ * @parameter
+ */
+ private Map environmentVariables = new HashMap();
/**
- Set GWT shell bindAddress.
- <p>
@@ -374,6 +378,14 @@
}
}
+ // set env
+ if ( environmentVariables != null ) {
+ for( Object o : environmentVariables.entrySet() )
+ }
+
if ( bindAddress != null && bindAddress.length() > 0 )
{
cmd.arg( "-bindAddress" ).arg( bindAddress );