You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2010/11/02 10:45:37 UTC

svn commit: r1029983 - /gump/trunk/python/gump/core/model/project.py

Author: bodewig
Date: Tue Nov  2 09:45:36 2010
New Revision: 1029983

URL: http://svn.apache.org/viewvc?rev=1029983&view=rev
Log:
add jvmarg support for new mvn builder aliases as well

Modified:
    gump/trunk/python/gump/core/model/project.py

Modified: gump/trunk/python/gump/core/model/project.py
URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/project.py?rev=1029983&r1=1029982&r2=1029983&view=diff
==============================================================================
--- gump/trunk/python/gump/core/model/project.py (original)
+++ gump/trunk/python/gump/core/model/project.py Tue Nov  2 09:45:36 2010
@@ -663,7 +663,7 @@ class Project(NamedModelObject, Statable
         if self.hasDomChild('description'):
             self.desc = self.getDomChildValue('description')
 
-        jvmargs_parents = ['ant', 'maven', 'mvn']
+        jvmargs_parents = ['ant', 'maven', 'mvn', 'mvn1', 'mvn2', 'mvn3']
         for tag in jvmargs_parents:
             if self.hasDomChild(tag):
                 self.addJVMArgs(self.getDomChild(tag))