Return-Path: Mailing-List: contact gump-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list gump@jakarta.apache.org Received: (qmail 27014 invoked by uid 500); 9 Feb 2004 20:19:43 -0000 Received: (qmail 26991 invoked from network); 9 Feb 2004 20:19:42 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 9 Feb 2004 20:19:42 -0000 Received: (qmail 95800 invoked by uid 1728); 9 Feb 2004 20:19:52 -0000 Date: 9 Feb 2004 20:19:52 -0000 Message-ID: <20040209201952.95799.qmail@minotaur.apache.org> From: ajack@apache.org To: jakarta-gump-cvs@apache.org Subject: cvs commit: jakarta-gump/python/gump/model project.py X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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