Browse Source

Add documentation for <java>'s new timeout attribute.

PR: 5299


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272291 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
f5b6799863
2 changed files with 10 additions and 0 deletions
  1. +3
    -0
      WHATSNEW
  2. +7
    -0
      docs/manual/CoreTasks/java.html

+ 3
- 0
WHATSNEW View File

@@ -278,6 +278,9 @@ Other changes:
* <exec>, <sql> and <java> now support append attributes to allow
appending the output to an existing file.

* <java> now supports a timeout attribute analog to <exec> - it is
highly recommended to only use it together with fork="true".

Changes from Ant 1.4 to Ant 1.4.1
===========================================



+ 7
- 0
docs/manual/CoreTasks/java.html View File

@@ -107,6 +107,13 @@ JVM.
(ignored if fork is disabled).</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">timeout</td>
<td valign="top">Stop the command if it doesn't finish within the
specified time (given in milliseconds). <strong>It is highly
recommended to use this feature only if fork is enabled.</strong></td>
<td align="center" valign="top">No</td>
</tr>
</table>
<h3>Parameters specified as nested elements</h3>
<h4>arg and jvmarg</h4>


Loading…
Cancel
Save