bodewig 2003/02/03 05:26:37
Modified: stylesheet bash.xsl win2k.xsl
site/xdocs ant.xml
Log:
Introduce a new nested <jvmarg> element to <ant> which allows us to
pass additional command line arguments to the JVM.
Revision Changes Path
1.86 +5 -0 jakarta-gump/stylesheet/bash.xsl
Index: bash.xsl
===================================================================
RCS file: /home/cvs/jakarta-gump/stylesheet/bash.xsl,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- bash.xsl 16 Jan 2003 17:04:46 -0000 1.85
+++ bash.xsl 3 Feb 2003 13:26:37 -0000 1.86
@@ -441,6 +441,11 @@
</xsl:for-each>
</xsl:if>
+ <xsl:for-each select="jvmarg">
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="@value"/>
+ </xsl:for-each>
+
<xsl:text> </xsl:text><xsl:value-of select="$ant-cmd"/>
<xsl:if test="@buildfile">
1.46 +5 -0 jakarta-gump/stylesheet/win2k.xsl
Index: win2k.xsl
===================================================================
RCS file: /home/cvs/jakarta-gump/stylesheet/win2k.xsl,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- win2k.xsl 25 Jan 2003 13:57:17 -0000 1.45
+++ win2k.xsl 3 Feb 2003 13:26:37 -0000 1.46
@@ -380,6 +380,11 @@
</xsl:for-each>
</xsl:if>
+ <xsl:for-each select="jvmarg">
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="@value"/>
+ </xsl:for-each>
+
<xsl:text> org.apache.tools.ant.Main</xsl:text>
<xsl:if test="@buildfile">
1.5 +19 -0 jakarta-gump/site/xdocs/ant.xml
Index: ant.xml
===================================================================
RCS file: /home/cvs/jakarta-gump/site/xdocs/ant.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ant.xml 2 Jan 2002 14:34:02 -0000 1.4
+++ ant.xml 3 Feb 2003 13:26:37 -0000 1.5
@@ -126,6 +126,25 @@
</tr>
</table>
</subsection>
+
+ <subsection name="jvmarg">
+ <p>Additional command line parameters to pass to the Java
+ Virtual Machine running Ant.</p>
+
+ <table>
+ <tr>
+ <th>Attribute</th>
+ <th>Description</th>
+ <th>Required?</th>
+ </tr>
+ <tr>
+ <td>value</td>
+ <td>The parameter to pass to the command line. This will be
+ passed verbatim without any additional quotes.</td>
+ <td>Yes</td>
+ </tr>
+ </table>
+ </subsection>
</section>
</body>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]