Index of /apache/ant
 Name                       Last modified      Size  Description
 Name                       Last modified      Size  Description
![[PARENTDIR]](/icons/back.gif) Parent Directory                                -
 Parent Directory                                -   
![[DIR]](/icons/folder.gif) antlibs/                   2022-06-17 12:38    -
 antlibs/                   2022-06-17 12:38    -   
![[DIR]](/icons/folder.gif) binaries/                  2024-08-29 13:41    -
 binaries/                  2024-08-29 13:41    -   
![[DIR]](/icons/folder.gif) ivy/                       2024-12-31 14:17    -
 ivy/                       2024-12-31 14:17    -   
![[DIR]](/icons/folder.gif) ivyde/                     2022-06-17 12:38    -
 ivyde/                     2022-06-17 12:38    -   
![[DIR]](/icons/folder.gif) manual/                    2024-08-29 13:41    -
 manual/                    2024-08-29 13:41    -   
![[DIR]](/icons/folder.gif) source/                    2024-08-29 13:41    -
 source/                    2024-08-29 13:41    -   
![[TXT]](/icons/text.gif) README.html                2024-08-29 13:41  2.1K
 README.html                2024-08-29 13:41  2.1K  
![[TXT]](/icons/text.gif) RELEASE-NOTES-1.10.14.html 2023-08-21 01:39  3.3K
 RELEASE-NOTES-1.10.14.html 2023-08-21 01:39  3.3K  
![[TXT]](/icons/text.gif) RELEASE-NOTES-1.9.16.html  2021-07-13 17:20  554   Release Notes for Ant 1.9.16
 RELEASE-NOTES-1.9.16.html  2021-07-13 17:20  554   Release Notes for Ant 1.9.16
Release Notes of Apache Ant 1.10.15
Changes from Ant 1.10.14 TO Ant 1.10.15
=======================================
Other changes:
--------------
 * exec task now logs the process' non-zero exit code at INFO
   level instead of the previous ERROR level. The following
   message from exec task is the one who's level has been changed:
   Result: 1
   Bugzilla Report 26453
 * Removes direct references to com.sun.net.ssl.internal.ssl.Provider class
   from the mail task, since that internal JDK class is no longer available
   in recent versions of Java.
   Bugzilla Report 68460
 * <replaceregexp> has a new failOnError attribute which, when
   enabled, makes the task throw a BuildException for certain error
   cases that will only be logged otherwise.
   Github Pull Request #206
 * <ftp> task now has a new "useSecureDataChannel" attribute which
   can be set to true, when ftps is enabled, to enable secure data
   channel.
   Bugzilla Report 68773
Fixed bugs:
-----------
 * Fixes an regression, introduced in Ant 1.10.13, where pathconvert
   would unintentionally trim the string output.
   Bugzilla Report 67082
 * Fixes a bug in <depend> task which would throw a ClassFormatError
   if it encountered constant pool entry type 17.
   Bugzilla Report 66552
 * Launching ant.bat from within a Java program using java.lang.Runtime.exec()
   could result in an unexpected failure. This has now been fixed.
   Bugzilla Report 67417
 * Fixes an issue in bootstrap.bat when trying to detect if the "javac"
   command in the JDK supports the "--release" option.
   Github Pull Request #205
 * Fixes a bug in org.apache.tools.ant.taskdefs.email.EmailAddress which
   would throw a java.lang.StringIndexOutOfBoundsException if the email
   address passed to its constructor was an empty String.
   Bugzilla Report 68462
 * legacy-xml reporter of junitlauncher task was using a non-buffered
   outputstream when generating the report. This introduces severe
   performance penalties since the writes translate to native write
   system calls. This has been fixed to use a BufferedOutputStream.
   Github Pull Request #207