ajack 2004/02/09 12:19:52
Modified: python/gump/model project.py
Log:
Temporarily using maven script, not java on maven.CLI...
Revision Changes Path
1.33 +15 -12 jakarta-gump/python/gump/model/project.py
Index: project.py
===================================================================
RCS file: /home/cvs/jakarta-gump/python/gump/model/project.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- project.py 9 Feb 2004 18:25:59 -0000 1.32
+++ project.py 9 Feb 2004 20:19:52 -0000 1.33
@@ -826,7 +826,7 @@
#
# Get properties
#
- jvmargs=self.getJVMArgs()
+ #jvmargs=self.getJVMArgs()
#
# Run java on apache Ant...
@@ -837,18 +837,18 @@
# Set this as a system property. Setting it here helps JDK1.4+
# AWT implementations cope w/o an X11 server running (e.g. on
# Linux)
- cmd.addPrefixedParameter('-D','java.awt.headless','true','=')
+ # cmd.addPrefixedParameter('-D','java.awt.headless','true','=')
#
# Add BOOTCLASSPATH
#
- if bootclasspath:
- cmd.addPrefixedParameter('-X','bootclasspath/p',bootclasspath,':')
+ #if bootclasspath:
+ # cmd.addPrefixedParameter('-X','bootclasspath/p',bootclasspath,':')
- if jvmargs:
- cmd.addParameters(jvmargs)
+ #if jvmargs:
+ # cmd.addParameters(jvmargs)
- cmd.addParameter('org.apache.maven.cli.App')
+ # cmd.addParameter('org.apache.maven.cli.App')
#
# Allow maven-level debugging...
@@ -864,10 +864,13 @@
#
# This sets the *defaults*, a workspace could override them.
#
- cmd.addPrefixedParameter('-D','build.sysclasspath','only','=')
+ #cmd.addPrefixedParameter('-D','build.sysclasspath','only','=')
# End with the goal...
- if goal: cmd.addParameter(goal)
+ if goal:
+ cmd.addParameter(goal)
+ else:
+ cmd.addParameter('jar')
return cmd
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]