You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2001/07/06 13:23:25 UTC

cvs commit: jakarta-ant/docs/manual/CoreTasks exec.html execon.html

conor       01/07/06 04:23:24

  Modified:    .        WHATSNEW
               docs/manual/CoreTasks exec.html execon.html
  Log:
  Documentation update for vmlauncher attribute
  
  Revision  Changes    Path
  1.121     +10 -2     jakarta-ant/WHATSNEW
  
  Index: WHATSNEW
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/WHATSNEW,v
  retrieving revision 1.120
  retrieving revision 1.121
  diff -u -r1.120 -r1.121
  --- WHATSNEW	2001/07/05 13:10:24	1.120
  +++ WHATSNEW	2001/07/06 11:23:07	1.121
  @@ -69,6 +69,9 @@
     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 @@
     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 @@
   * 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
   
  
  
  
  1.4       +11 -0     jakarta-ant/docs/manual/CoreTasks/exec.html
  
  Index: exec.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/exec.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- exec.html	2001/04/26 23:22:36	1.3
  +++ exec.html	2001/07/06 11:23:16	1.4
  @@ -66,6 +66,17 @@
         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>
  
  
  
  1.4       +11 -0     jakarta-ant/docs/manual/CoreTasks/execon.html
  
  Index: execon.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/execon.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- execon.html	2001/05/22 09:58:34	1.3
  +++ execon.html	2001/07/06 11:23:18	1.4
  @@ -64,6 +64,17 @@
       <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
         been found.</td>