bodewig 2004/04/06 00:17:00
Modified: src/documentation/content/xdocs/metadata ant.xml
workspace.xml
Log:
Document <sysproperty>.
PR: GUMP-43
Revision Changes Path
1.5 +55 -0 gump/src/documentation/content/xdocs/metadata/ant.xml
Index: ant.xml
===================================================================
RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/ant.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ant.xml 27 Feb 2004 09:38:56 -0000 1.4
+++ ant.xml 6 Apr 2004 07:17:00 -0000 1.5
@@ -175,6 +175,61 @@
</tr>
</table>
</section>
+
+ <section><title>sysproperty</title>
+ <p>Java system property to be passed to the Java Virtual Machine.</p>
+
+ <table>
+ <tr>
+ <th>Attribute</th>
+ <th>Description</th>
+ <th>Required?</th>
+ </tr>
+ <tr>
+ <td>name</td>
+ <td>Name of the property to set.</td>
+ <td>Yes</td>
+ </tr>
+ <tr>
+ <td>value</td>
+ <td>Desired value</td>
+ <td>No</td>
+ </tr>
+ <tr>
+ <td>project</td>
+ <td>The name of the referenced project. Required if the reference
+ attribute is "home", "jar", "jarpath", or "srcdir".</td>
+ <td>No</td>
+ </tr>
+ <tr>
+ <td>reference</td>
+ <td>
+ One of the following values:<br/>
+ <strong>home:</strong> the home directory for the referenced
project<br/>
+ <strong>jar:</strong> the simple name (path relative to home) of the
jar in a
+ referenced project.<br/>
+ <strong>jarpath:</strong> the fully qualified path of the jar in a
referenced
+ project.<br/>
+ <strong>srcdir:</strong> the srcdir for the module containing the
project.<br/>
+ </td>
+ <td>No</td>
+ </tr>
+ <tr>
+ <td>path</td>
+ <td>a path which is to be interpreted relative to the srcdir for the
module containing
+ the project if specified, or this project otherwise. This option is
+ ignored if reference is specified.</td>
+ <td>No</td>
+ </tr>
+ <tr>
+ <td>id</td>
+ <td>Specifies which jar is desired. Required only for projects which
+ define more than one jar.</td>
+ <td>No</td>
+ </tr>
+ </table>
+ </section>
+
</section>
</body>
1.4 +29 -0 gump/src/documentation/content/xdocs/metadata/workspace.xml
Index: workspace.xml
===================================================================
RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/workspace.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- workspace.xml 11 Mar 2004 08:50:36 -0000 1.3
+++ workspace.xml 6 Apr 2004 07:17:00 -0000 1.4
@@ -136,6 +136,35 @@
</table>
</section>
+ <section><title>sysproperty</title>
+
+ <p>Global properties which are to be applied to every Ant
+ execution. Unlike <link href="#property">property</link> this
+ will be translated into a Java system property that is passed to
+ the Java VM instead of the application. Commonly used to
+ specify the "java.awt.headless" property which tells the Java VM
+ to run in "headless mode" so that it doesn't require an X-server
+ on Unix or a logged in user on MacOS X.</p>
+
+ <table>
+ <tr>
+ <th>Attribute</th>
+ <th>Description</th>
+ <th>Required?</th>
+ </tr>
+ <tr>
+ <td>name</td>
+ <td>Name of the property to set.</td>
+ <td>Yes</td>
+ </tr>
+ <tr>
+ <td>value</td>
+ <td>Desired value</td>
+ <td>Yes</td>
+ </tr>
+ </table>
+ </section>
+
<section><title>profile</title>
<p>Collections of projects and repositories. While a complete
profile can be defined here, typically one is referenced via
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]