mirror of
https://github.com/apache/ant.git
synced 2025-05-19 06:24:47 +00:00
Bring WHATSNEW up to date with recent changes (also don't duplicate
entries for the 1.5.2 changes) Document the resolveExecutable attribute assed to <exec> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3f1bc55590
commit
f23a604f89
20
WHATSNEW
20
WHATSNEW
@ -1,4 +1,4 @@
|
|||||||
Changes from Ant 1.5.1 to current CVS version
|
Changes from Ant 1.5.2 to current CVS version
|
||||||
=============================================
|
=============================================
|
||||||
|
|
||||||
Changes that could break older environments:
|
Changes that could break older environments:
|
||||||
@ -22,6 +22,9 @@ Changes that could break older environments:
|
|||||||
* ZipScanner#getIncludedFiles will now return the names of the ZipEntries
|
* ZipScanner#getIncludedFiles will now return the names of the ZipEntries
|
||||||
that have been matched instead of the name of the archive.
|
that have been matched instead of the name of the archive.
|
||||||
|
|
||||||
|
* XML namespaces are now enabled in the XML parser, meaning XML namespace
|
||||||
|
declarations no longer cause errors.
|
||||||
|
|
||||||
Fixed bugs:
|
Fixed bugs:
|
||||||
-----------
|
-----------
|
||||||
* <translate> was not ignoring comment lines.
|
* <translate> was not ignoring comment lines.
|
||||||
@ -102,10 +105,17 @@ Fixed bugs:
|
|||||||
* Ant will now exit with a return code of 1 if it encounters problems
|
* Ant will now exit with a return code of 1 if it encounters problems
|
||||||
with the command line arguments.
|
with the command line arguments.
|
||||||
|
|
||||||
|
* ClassLoader creation changes to use a factory method in Project. A new
|
||||||
|
class AntClassLoader2 implemented for 1.2+ specific features including
|
||||||
|
Package information and addition of classes specified in the Class-Path
|
||||||
|
element of a Jar's manifest.
|
||||||
|
|
||||||
|
* It is now possible in <exec> to resolve the executable to a project basedir or
|
||||||
|
execution dir relative executable. The resolveExecutable must be used to
|
||||||
|
pick up such executables.
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
--------------
|
--------------
|
||||||
* **/.DS_Store has been added to the list of default pattern excludes.
|
|
||||||
|
|
||||||
* The filesetmanifest attribute of <jar> has been reenabled.
|
* The filesetmanifest attribute of <jar> has been reenabled.
|
||||||
|
|
||||||
* The start and end tokens for <translate> may now be longer than a
|
* The start and end tokens for <translate> may now be longer than a
|
||||||
@ -182,6 +192,10 @@ Other changes:
|
|||||||
|
|
||||||
* <tar>'s up-to-date check didn't work for nested <(tar)fileset>s.
|
* <tar>'s up-to-date check didn't work for nested <(tar)fileset>s.
|
||||||
|
|
||||||
|
* a new attribute "globalopts" can be added to all Perforce tasks.
|
||||||
|
You can put in it all the strings described by p4 help usage. Refer to
|
||||||
|
the docs for more information.
|
||||||
|
|
||||||
Changes from Ant 1.5.1Beta1 to 1.5.1
|
Changes from Ant 1.5.1Beta1 to 1.5.1
|
||||||
====================================
|
====================================
|
||||||
|
|
||||||
|
@ -105,6 +105,15 @@ <h3>Parameters</h3>
|
|||||||
false as well.</td>
|
false as well.</td>
|
||||||
<td align="center" valign="top">No, default is <i>true</i></td>
|
<td align="center" valign="top">No, default is <i>true</i></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td valign="top">resolveExecutable</td>
|
||||||
|
<td valign="top">When this attribute is true, the name of the executable
|
||||||
|
if resolved firstly against the project basedir and
|
||||||
|
if that doe snot exist, against the execution
|
||||||
|
directory if specified. On Unix systems, if you only
|
||||||
|
want to allow execution of commands in the user's path,
|
||||||
|
set this to false.</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<h3>Examples</h3>
|
<h3>Examples</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user