git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269274 13f79535-47bb-0310-9956-ffa450edef68master
@@ -69,6 +69,9 @@ Other changes: | |||||
includes some iPlanet utility tasks | includes some iPlanet utility tasks | ||||
* Add support for JBoss Application Server to the <ejbjar> task. | * 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 | * Allow the SQL Delimiter to be set in the so that Oracle stored procs may be | ||||
entered | entered | ||||
@@ -88,6 +91,11 @@ Other changes: | |||||
task cannot determine itself (dependency on parameters, not file | task cannot determine itself (dependency on parameters, not file | ||||
modification times for example) | 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: | Fixed bugs: | ||||
----------- | ----------- | ||||
@@ -126,13 +134,13 @@ Fixed bugs: | |||||
* Initialise classes when loaded through the AntClassLoader - that is, run | * Initialise classes when loaded through the AntClassLoader - that is, run | ||||
static initializers | 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 | * Create the <ejbjar> weblogic command line as a set of arguments rather than | ||||
as a single line. Avoids problems with paths which contain spaces. | as a single line. Avoids problems with paths which contain spaces. | ||||
* Make the AntClassLoader load resources in the same order as it currently | * 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 | * Allow DTD locations to be specified when building generic ejb-jars | ||||
@@ -66,6 +66,17 @@ systems.</p> | |||||
variables are specified.</td> | variables are specified.</td> | ||||
<td align="center" valign="top">No, default is <i>false</i></td> | <td align="center" valign="top">No, default is <i>false</i></td> | ||||
</tr> | </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> | </table> | ||||
<h3>Examples</h3> | <h3>Examples</h3> | ||||
<blockquote> | <blockquote> | ||||
@@ -63,6 +63,17 @@ command. At least one nested <code><fileset></code> is required.</p> | |||||
variables are specified.</td> | variables are specified.</td> | ||||
<td align="center" valign="top">No, default is <i>false</i></td> | <td align="center" valign="top">No, default is <i>false</i></td> | ||||
</tr> | </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> | <tr> | ||||
<td valign="top">skipemptyfilesets</td> | <td valign="top">skipemptyfilesets</td> | ||||
<td valign="top">Don't run the command, if no source files have | <td valign="top">Don't run the command, if no source files have | ||||