Browse Source

Documentation update for vmlauncher attribute

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269274 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 24 years ago
parent
commit
9301e386b3
3 changed files with 32 additions and 2 deletions
  1. +10
    -2
      WHATSNEW
  2. +11
    -0
      docs/manual/CoreTasks/exec.html
  3. +11
    -0
      docs/manual/CoreTasks/execon.html

+ 10
- 2
WHATSNEW View File

@@ -69,6 +69,9 @@ Other changes:
includes some iPlanet utility tasks
* Add support for JBoss Application Server to the <ejbjar> task.

* Add a naming attribute to <ejbjar> to control the naming scheme that
ejbjar uses to name the generated EJB jars.
* Allow the SQL Delimiter to be set in the so that Oracle stored procs may be
entered
@@ -88,6 +91,11 @@ Other changes:
task cannot determine itself (dependency on parameters, not file
modification times for example)

* added vmlauncher attribute to exec tasks. This defaults to true. If
it is set to false, the VM's ability to launch commands in bypassed
and the OS shell, either directly or through the auxillary antRun
scripts is used.

Fixed bugs:
-----------

@@ -126,13 +134,13 @@ Fixed bugs:
* Initialise classes when loaded through the AntClassLoader - that is, run
static initializers
* Implement getResource() in AntClassLoader
* Implement getResource() and getResources() in AntClassLoader

* Create the <ejbjar> weblogic command line as a set of arguments rather than
as a single line. Avoids problems with paths which contain spaces.
* Make the AntClassLoader load resources in the same order as it currently
loads classes
loads classes.
* Allow DTD locations to be specified when building generic ejb-jars



+ 11
- 0
docs/manual/CoreTasks/exec.html View File

@@ -66,6 +66,17 @@ systems.</p>
variables are specified.</td>
<td align="center" valign="top">No, default is <i>false</i></td>
</tr>
<tr>
<td valign="top">vmlauncher</td>
<td valign="top">Run command using the Java VM's execution facilities
where available. If set to false the underlying OS's shell,
either directly or through the antRun scripts, will be used.
Under some operating systems, this gives access to facilities
not nomrally available through the VM including, under Windows,
being able to execute scripts, rather than their associated
interpreter.</td>
<td align="center" valign="top">No, default is <i>true</i></td>
</tr>
</table>
<h3>Examples</h3>
<blockquote>


+ 11
- 0
docs/manual/CoreTasks/execon.html View File

@@ -63,6 +63,17 @@ command. At least one nested <code>&lt;fileset&gt;</code> is required.</p>
variables are specified.</td>
<td align="center" valign="top">No, default is <i>false</i></td>
</tr>
<tr>
<td valign="top">vmlauncher</td>
<td valign="top">Run command using the Java VM's execution facilities
where available. If set to false the underlying OS's shell,
either directly or through the antRun scripts, will be used.
Under some operating systems, this gives access to facilities
not nomrally available through the VM including, under Windows,
being able to execute scripts, rather than their associated
interpreter.</td>
<td align="center" valign="top">No, default is <i>true</i></td>
</tr>
<tr>
<td valign="top">skipemptyfilesets</td>
<td valign="top">Don't run the command, if no source files have


Loading…
Cancel
Save