Name Last modified Size Description
Parent Directory - antidote/ 2005-04-04 07:57 - antlibs/ 2015-02-17 20:26 - binaries/ 2017-01-01 18:31 - common/ 2011-01-11 04:22 - ivy/ 2015-08-30 15:22 - ivyde/ 2015-02-17 20:26 - manual/ 2017-01-01 18:31 - source/ 2017-01-01 18:31 - KEYS 2012-03-11 16:06 87K RELEASE-NOTES-1.10.0.html 2016-12-31 09:38 4.6K RELEASE-NOTES-1.5.4.html 2003-08-13 05:55 3.4K RELEASE-NOTES-1.6.0.html 2003-12-18 20:51 27K RELEASE-NOTES-1.6.1.html 2004-02-12 14:01 2.9K RELEASE-NOTES-1.6.2.html 2004-07-16 08:33 9.4K RELEASE-NOTES-1.6.3.html 2005-04-28 14:21 12K RELEASE-NOTES-1.6.4.html 2005-05-19 13:27 1.1K RELEASE-NOTES-1.6.5.html 2005-06-02 13:49 838 RELEASE-NOTES-1.7.0.html 2006-12-20 02:18 30K RELEASE-NOTES-1.7.1.html 2008-07-09 09:19 8.2K RELEASE-NOTES-1.8.0.html 2010-02-02 01:01 40K RELEASE-NOTES-1.8.0RC1.html 2010-01-12 19:54 38K RELEASE-NOTES-1.8.3.html 2012-03-13 03:49 9.3K RELEASE-NOTES-1.8.4.html 2012-05-23 13:54 469 RELEASE-NOTES-1.9.0.html 2013-03-10 23:08 5.1K RELEASE-NOTES-1.9.1.html 2013-05-22 02:26 1.6K RELEASE-NOTES-1.9.2.html 2013-07-12 11:05 1.0K RELEASE-NOTES-1.9.3.html 2013-12-29 05:11 1.4K RELEASE-NOTES-1.9.4.html 2014-05-06 00:27 6.2K RELEASE-NOTES-1.9.5.html 2015-06-03 17:52 5.0K RELEASE-NOTES-1.9.6.html 2015-07-02 10:28 596 RELEASE-NOTES-1.9.7.html 2016-04-12 11:15 3.0K RELEASE-NOTES-1.9.8.html 2016-12-31 09:38 3.9K RELEASE-NOTES-apache-ant-1.8.1.html 2010-05-01 04:35 5.2K RELEASE-NOTES-apache-ant-1.8.2.html 2010-12-14 16:08 12K ant-current-bin.zip 2010-12-20 18:47 10M ant-current-bin.zip.asc 2010-12-20 18:50 838 ant-current-bin.zip.md5 2010-12-20 18:48 34 ant-current-bin.zip.sha1 2010-12-20 18:48 42 ant-current-bin.zip.sha512 2010-12-20 18:48 130 ant-current-manual.zip 2010-12-20 18:47 5.3M ant-current-manual.zip.asc 2010-12-20 18:50 838 ant-current-manual.zip.md5 2010-12-20 18:48 34 ant-current-manual.zip.sha1 2010-12-20 18:48 42 ant-current-manual.zip.sha512 2010-12-20 18:48 130 ant-current-src.zip 2010-12-20 18:48 8.4M ant-current-src.zip.asc 2010-12-20 18:50 838 ant-current-src.zip.md5 2010-12-20 18:48 34 ant-current-src.zip.sha1 2010-12-20 18:48 42 ant-current-src.zip.sha512 2010-12-20 18:48 130 test.foo 2009-10-09 21:34 0
The Apache Ant team currently maintains two lines of development. The 1.9.x releases require Java5 at runtime and 1.10.x requires Java8 at runtime. Both lines are based off of Ant 1.9.7 and the 1.9.x releases are mostly bug fix releases while additional new features are developed for 1.10.x.
The latest releases are 1.9.8 and 1.10.0 and 1.10.0 contains a super set of 1.9.8 - with the exception of a few tasks and features that no longer work with Java8 anyway (like the apt task).
The full release notes of the latest releases are below.
Changes from Ant 1.9.7 TO Ant 1.9.8 =================================== Changes that could break older environments: ------------------------------------------- * <fileset>/<zipfileset>/<tarfileset> exhibited undefined behavior when both the dir and file attribute have been used on the same instance. This will now cause the build to fail. Bugzilla Report 59402 * The ant.java.version property will now hold the value "9" rather than "1.9" if running on Java 9. * <rmic> will no longer allow the -Xnew option (or xmic compiler) to be used when running on Java 9 since this option has been removed. Bugzilla Report 59906 Fixed bugs: ----------- * setDynamicAttribute on MacroInstance now lower-cases the attribute name in order to allow users of the API to use the attributes names they have specified. Bugzilla Report 59339 * <get>'s quiet attribute was broken, it didn't suppress any messages. Bugzilla Report 59379 * <zip>'s check whether an archive is already up-to-date failed on NTFS filesystems and re-created archives more often than necessary. Bugzilla Report 59562 * AntClassLoader didn't delegate to the parent loader for classes in the "jdk" package or one of its subpackages. This hierarchy has been introduced with Java 7. Bugzilla Report 59556 * The ant wrapper script used on Unix-like operating systems only worked on OSes where sed is GNU sed. Bugzilla Report 59898 * <touch>'s default pattern as well as the default patterns used by the <date> (resource) selectors depended on the JDK being used - or rather the locale provider being used and the default locale provider changed with Java 9. They are now fixed and the documentation has been updated to reflect the real patterns used rather than a non-formal description of the expected format. Bugzilla Report 59909 * Clarified the documentation of <get>'s retries attribute. Bugzilla Report 59930 * The ant wrapper script failed if backticks were passed on the command line. Bugzilla Report 60150, 59445 * The report generated by <junitreport> could contain duplicate characters in stack traces. Bugzilla Report 58661 Other changes: -------------- * <junit> now initializes the cause of the AssertionFailedError when converting from AssertionError. Bugzilla Report 58982 * <scp> now supports compression via the optional compressed attribute. Bugzilla Report 47552 * <junit> now supports JDK9 modules Github Pull Request #18 * a new implementation "builtin" has been added to <native2ascii> and is the default when running on JDK9+ since the tool itself has been removed from the JDK. Bugzilla Report 59855 * added a new <native2asciifilter> filter that can perform non-ASCII to Unicode-escape conversions. * <rmic> defaults to the "forking" compiler on JDK 9+ as the implementation class of rmic is not exported by its containing module and thus not accessible to Ant without applying -XaddExports magic. Bugzilla Report 59860 * a new implementation "forking" has been added to <javah> and is used as default when running on JDK9. * support for javac's -h switch has been added with the nativeheaderdir attribute. Bugzilla Report 59905 * it is now possible to set features of the TraX factory used by <xslt> and <junitreport>. * it is now possible to use references to Ant types and classloaders built around Ant <path>s as values for TraX factory attributes. * <junitreport> now enables the feature http://www.oracle.com/xml/jaxp/properties/enableExtensionFunctions when run on Java 9 so the redirect extension function can be used if when a SecurityManager is active. Bugzilla Report 60060 * support for javac's --release switch introduced with Java9 has been added. Bugzilla Report 60172
Changes from Ant 1.9.7 TO Ant 1.10.0 ==================================== Changes that could break older environments: ------------------------------------------- * Ant 1.10.x requires Java8 or newer at compile or build time. The 1.9.x series wil stay compatible with Java5. * The <apt> task has been removed since apt itself has been removed with Java8. * <fileset>/<zipfileset>/<tarfileset> exhibited undefined behavior when both the dir and file attribute have been used on the same instance. This will now cause the build to fail. Bugzilla Report 59402 * <native2ascii> will default to the builtin implementation on Java8 as well (sun isn't available for Java9+ anyway). * The ant.java.version property will now hold the value "9" rather than "1.9" if running on Java 9. * <rmic> will no longer allow the -Xnew option (or xmic compiler) to be used when running on Java 9 since this option has been removed. Bugzilla Report 59906 * <javah> will default to the "forking" implementation on Java8 as well. This is different from Ant 1.9.8. Fixed bugs: ----------- * setDynamicAttribute on MacroInstance now lower-cases the attribute name in order to allow users of the API to use the attributes names they have specified. Bugzilla Report 59339 * <get>'s quiet attribute was broken, it didn't suppress any messages. Bugzilla Report 59379 * <zip>'s check whether an archive is already up-to-date failed on NTFS filesystems and re-created archives more often than necessary. Bugzilla Report 59562 * AntClassLoader didn't delegate to the parent loader for classes in the "jdk" package or one of its subpackages. This hierarchy has been introduced with Java 7. Bugzilla Report 59556 * The ant wrapper script used on Unix-like operating systems only worked on OSes where sed is GNU sed. Bugzilla Report 59898 * <touch>'s default pattern as well as the default patterns used by the <date> (resource) selectors depended on the JDK being used - or rather the locale provider being used and the default locale provider changed with Java 9. They are now fixed and the documentation has been updated to reflect the real patterns used rather than a non-formal description of the expected format. Bugzilla Report 59909 * Clarified the documentation of <get>'s retries attribute. Bugzilla Report 59930 * The ant wrapper script failed if backticks were passed on the command line. Bugzilla Report 60150, 59445 * The report generated by <junitreport> could contain duplicate characters in stack traces. Bugzilla Report 58661 Other changes: -------------- * New file selectors <executable>, <symlink> and <ownedBy>. * New task <setpermissions> that provides the ability to set POSIX compatible permssions via NIO's PosixFilePermission * <junit> now initializes the cause of the AssertionFailedError when converting from AssertionError. Bugzilla Report 58982 * <scp> now supports compression via the optional compressed attribute. Bugzilla Report 47552 * <junit> now supports JDK9 modules Github Pull Request #18 * a new implementation "builtin" has been added to <native2ascii> and is the default when running on JDK9+ since the tool itself has been removed from the JDK. Bugzilla Report 59855 * added a new <native2asciifilter> filter that can perform non-ASCII to Unicode-escape conversions. * <rmic> defaults to the "forking" compiler on JDK 9+ as the implementation class of rmic is not exported by its containing module and thus not accessible to Ant without applying -XaddExports magic. Bugzilla Report 59860 * a new implementation "forking" has been added to <javah> and is used as default when running on JDK9. * support for javac's -h switch has been added with the nativeheaderdir attribute. Bugzilla Report 59905 * it is now possible to set features of the TraX factory used by <xslt> and <junitreport>. * it is now possible to use references to Ant types and classloaders built around Ant <path>s as values for TraX factory attributes. * AntClassLoader and its subclasses register themselves as parallel capable. * <junitreport> now enables the feature http://www.oracle.com/xml/jaxp/properties/enableExtensionFunctions when run on Java 9 so the redirect extension function can be used if when a SecurityManager is active. Bugzilla Report 60060 * support for javac's --release switch introduced with Java9 has been added. Bugzilla Report 60172