Author: bodewig Date: Wed Apr 1 11:01:28 2026 New Revision: 83554 Log: Apache Ant 1.10.16 released
Added: release/ant/RELEASE-NOTES-1.10.16.html (contents, props changed) release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2 (contents, props changed) release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.asc release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.sha512 release/ant/binaries/apache-ant-1.10.16-bin.tar.gz (contents, props changed) release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.asc release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.sha512 release/ant/binaries/apache-ant-1.10.16-bin.tar.xz (contents, props changed) release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.asc release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.sha512 release/ant/binaries/apache-ant-1.10.16-bin.zip (contents, props changed) release/ant/binaries/apache-ant-1.10.16-bin.zip.asc release/ant/binaries/apache-ant-1.10.16-bin.zip.sha512 release/ant/manual/apache-ant-1.10.16-manual.tar.bz2 (contents, props changed) release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.asc release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.sha512 release/ant/manual/apache-ant-1.10.16-manual.tar.gz (contents, props changed) release/ant/manual/apache-ant-1.10.16-manual.tar.gz.asc release/ant/manual/apache-ant-1.10.16-manual.tar.gz.sha512 release/ant/manual/apache-ant-1.10.16-manual.tar.xz (contents, props changed) release/ant/manual/apache-ant-1.10.16-manual.tar.xz.asc release/ant/manual/apache-ant-1.10.16-manual.tar.xz.sha512 release/ant/manual/apache-ant-1.10.16-manual.zip (contents, props changed) release/ant/manual/apache-ant-1.10.16-manual.zip.asc release/ant/manual/apache-ant-1.10.16-manual.zip.sha512 release/ant/source/apache-ant-1.10.16-src.tar.bz2 (contents, props changed) release/ant/source/apache-ant-1.10.16-src.tar.bz2.asc release/ant/source/apache-ant-1.10.16-src.tar.bz2.sha512 release/ant/source/apache-ant-1.10.16-src.tar.gz (contents, props changed) release/ant/source/apache-ant-1.10.16-src.tar.gz.asc release/ant/source/apache-ant-1.10.16-src.tar.gz.sha512 release/ant/source/apache-ant-1.10.16-src.tar.xz (contents, props changed) release/ant/source/apache-ant-1.10.16-src.tar.xz.asc release/ant/source/apache-ant-1.10.16-src.tar.xz.sha512 release/ant/source/apache-ant-1.10.16-src.zip (contents, props changed) release/ant/source/apache-ant-1.10.16-src.zip.asc release/ant/source/apache-ant-1.10.16-src.zip.sha512 Modified: release/ant/README.html Modified: release/ant/README.html ============================================================================== --- release/ant/README.html Wed Apr 1 10:13:27 2026 (r83553) +++ release/ant/README.html Wed Apr 1 11:01:28 2026 (r83554) @@ -1,63 +1,93 @@ -<html> -<head>Release Notes of Apache Ant 1.10.15</head> -<body><pre> -Changes from Ant 1.10.14 TO Ant 1.10.15 +<!DOCTYPE html><html><head><meta charset="UTF-8" /><title>Source Code</title></head><body><pre>Changes from Ant 1.10.15 TO Ant 1.10.16 ======================================= -Other changes: --------------- +Changes that could break older environments: +------------------------------------------- - * 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 + * <xslt> now uses the same logic to compare file timestamps when + determining whether a target file is out-of-date with respect to + the source file or stylesheet that most other tasks use. This means + it will assume a default timestamp granularity that depends on the + current operating system. + A new granularity attribute allows you to override the assumed + granularity. + Under certain edge cases this means xslt will now not process files + it would have processed before (when the timestamps of source or + stylesheet are very close or even equal to the timestamp of the + target). In this case you can set granularity to 0 to get back to + the behavior of 1.10.15. + Bugzilla Report 65756 + + * the <mail> task as well as MailLogger will now check the server + identity as specified by RFC 2595 when JavaMail is used in + combination with TLS (plain TLS or StartTLS). + The check can be disabled with a new MailLogger property + MailLogger.tls.checkserveridentity or a new <mail> task attribute + checkServerIdentity. + Bugzilla Report 69416 + + * Ant now recognizes Windows junctions and treats them just like + symbolic links in general. With this builds on Windows that use + followSymlinks="false" and rely on Ant following Windows junctions + will break. In order to get the old behavior you need to set + followSymlinks to true and exclude real symbolic links via the + <symlink> selector. + Bugzilla Report 66293 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 + * <scp> now properly handles IPv6 addresses as hostnames. + Bugzilla Report 59160 + + * javac task has been fixed to generate the "-classpath" option + only when there are any classpath elements present. + Bugzilla Report 69586 + + * URLResource#getName could strip the first character of a resource + path even if it was not a file separator. + Bugzilla Report 69680 + + * ant.bat now exits with a non-zero exit code if ANT_HOME is not set. + Github Pull Request #222 + + * A regression in ftp task caused some files to not be downloaded. + That has been fixed now. + Bugzilla Report 69485 + +Other changes: +-------------- + * Ant will no longer set a java.lang.SecurityManager at runtime + if the "java.security.manager" system property is set to + "disallow". + Github Pull Request #216 + + * <mail> and MailLogger can now enforce the use of STARTLS rather + than silently fall back to unencrypted authentication via a new + MailLogger property and a new <mail> task attribute. + Bugzilla Report 69416 + + * added a Windows specific <mklink> task that can be used to create + hard links, symbolic links and junctions. + + * added <delete link="..."> that can be used delete symbolic links or + Windows junctions. For symbolic links this duplicates what + <symlink action="delete" ...> does - it has been introduced to + handle symlinks and junctions via a single API. + + * added <canCreateSymlink> condition that evaluates to true if the + current Ant process can create symbolic links. + + * added <windowsjunction> file selector which only select directories + that are Windows junctions. + + * added a new actOnLinkTargets attribute to <setpermissions> to + control whether the permissions apply to a symbolic link or Windows + junction or the target of the respective links. The old behavior + of changing the link's target remains as default. + + * a new combination of attributes allows <sshexec> to mask sensitive + data specified for the command line to execute. + Github Pull Request #124 </pre></body></html> Added: release/ant/RELEASE-NOTES-1.10.16.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/RELEASE-NOTES-1.10.16.html Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,93 @@ +<!DOCTYPE html><html><head><meta charset="UTF-8" /><title>Source Code</title></head><body><pre>Changes from Ant 1.10.15 TO Ant 1.10.16 +======================================= + +Changes that could break older environments: +------------------------------------------- + + * <xslt> now uses the same logic to compare file timestamps when + determining whether a target file is out-of-date with respect to + the source file or stylesheet that most other tasks use. This means + it will assume a default timestamp granularity that depends on the + current operating system. + A new granularity attribute allows you to override the assumed + granularity. + Under certain edge cases this means xslt will now not process files + it would have processed before (when the timestamps of source or + stylesheet are very close or even equal to the timestamp of the + target). In this case you can set granularity to 0 to get back to + the behavior of 1.10.15. + Bugzilla Report 65756 + + * the <mail> task as well as MailLogger will now check the server + identity as specified by RFC 2595 when JavaMail is used in + combination with TLS (plain TLS or StartTLS). + The check can be disabled with a new MailLogger property + MailLogger.tls.checkserveridentity or a new <mail> task attribute + checkServerIdentity. + Bugzilla Report 69416 + + * Ant now recognizes Windows junctions and treats them just like + symbolic links in general. With this builds on Windows that use + followSymlinks="false" and rely on Ant following Windows junctions + will break. In order to get the old behavior you need to set + followSymlinks to true and exclude real symbolic links via the + <symlink> selector. + Bugzilla Report 66293 + +Fixed bugs: +----------- + + * <scp> now properly handles IPv6 addresses as hostnames. + Bugzilla Report 59160 + + * javac task has been fixed to generate the "-classpath" option + only when there are any classpath elements present. + Bugzilla Report 69586 + + * URLResource#getName could strip the first character of a resource + path even if it was not a file separator. + Bugzilla Report 69680 + + * ant.bat now exits with a non-zero exit code if ANT_HOME is not set. + Github Pull Request #222 + + * A regression in ftp task caused some files to not be downloaded. + That has been fixed now. + Bugzilla Report 69485 + +Other changes: +-------------- + + * Ant will no longer set a java.lang.SecurityManager at runtime + if the "java.security.manager" system property is set to + "disallow". + Github Pull Request #216 + + * <mail> and MailLogger can now enforce the use of STARTLS rather + than silently fall back to unencrypted authentication via a new + MailLogger property and a new <mail> task attribute. + Bugzilla Report 69416 + + * added a Windows specific <mklink> task that can be used to create + hard links, symbolic links and junctions. + + * added <delete link="..."> that can be used delete symbolic links or + Windows junctions. For symbolic links this duplicates what + <symlink action="delete" ...> does - it has been introduced to + handle symlinks and junctions via a single API. + + * added <canCreateSymlink> condition that evaluates to true if the + current Ant process can create symbolic links. + + * added <windowsjunction> file selector which only select directories + that are Windows junctions. + + * added a new actOnLinkTargets attribute to <setpermissions> to + control whether the permissions apply to a symbolic link or Windows + junction or the target of the respective links. The old behavior + of changing the link's target remains as default. + + * a new combination of attributes allows <sshexec> to mask sensitive + data specified for the command line to execute. + Github Pull Request #124 +</pre></body></html> Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2 ============================================================================== Binary file. No diff available. Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GAAKCRBDLcl+e3Pw +tmYNAP9PYAqtwdZ0dsEqHDFKuDKFSBO0yX3PkOwzziASwwdPhQD+K2i3bByFqQ35 +GwHiVYNMsbO1MKURGUzOoLa0fkoy4gI= +=3C9P +-----END PGP SIGNATURE----- Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.bz2.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +6a599e1c70c46a65d629b07a6546626f6f9b6eb5ead87479837a383bc23cfdf65c9f3da3577c706940014e6832d3c480bc7ab7305b9dc8c7ba9c9c347b4a3815 Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.gz ============================================================================== Binary file. No diff available. Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GAAKCRBDLcl+e3Pw +tuZIAP4pUzrp5nsQNJj0DQuuy3JUFmHRMbCKyhNqcGAiwaA8FAEA9LGP53sgugQr +1cqcoi9AA4NxyiHvUlWhPLImA0Ot1g0= +=mty7 +-----END PGP SIGNATURE----- Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.gz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +b711c0a88751efdbcc33d55b1c054b741e5e75c603c1a1b7ed39bb62f0b1fa562cd2e6232d9fb5dd8ab165169fde35a4e4be567925ab9aa84bc668ac54077be7 Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.xz ============================================================================== Binary file. No diff available. Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GQAKCRBDLcl+e3Pw +tp3EAQCzcdV4UCjxMKWSXK5+hKd+JIH4Cj0/svZx5pauff5pYQD+JaVfhmbfamx+ +Vn+E5P0Ql1fHgw7rXK/Eba1hBdUkXwY= +=na6S +-----END PGP SIGNATURE----- Added: release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.tar.xz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +62cd39a3053cbbf8b6781a2dad3df29c29131170ebcca4e8aecf77b0a7e20bf0a6b92963efa183ae746bc6c22f94229e39bcd5a57f7c4ddca9e1f9242c6595be Added: release/ant/binaries/apache-ant-1.10.16-bin.zip ============================================================================== Binary file. No diff available. Added: release/ant/binaries/apache-ant-1.10.16-bin.zip.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.zip.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3FgAKCRBDLcl+e3Pw +tr+jAP0eOginQqXHV9cLph7sqm4KbTxiDNKj6v7yYnmlwFAxZgD/c3JiBaJKUGNJ +SiTjt2zZMGFD+VTaKt4lOx1A+y0m9w4= +=mPW/ +-----END PGP SIGNATURE----- Added: release/ant/binaries/apache-ant-1.10.16-bin.zip.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/binaries/apache-ant-1.10.16-bin.zip.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +d5001a26c92fea60da21ddf2520d630b7366f1be85c0d4289b67d286498e01d38653eefe2b81e7f68c9175033c2d1267b7ab2fa914f6946a3b8c8dced1d5b57c Added: release/ant/manual/apache-ant-1.10.16-manual.tar.bz2 ============================================================================== Binary file. No diff available. Added: release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GQAKCRBDLcl+e3Pw +ttNNAQCNMGHkBkTY0CgzN+zoAiPf5A4G1U10UApsKnZZPO8I/AEAqUyo+MVWq+QC +SYQxmHsilpTpIQRLAn8pC4MEVoD8wQI= +=+rxZ +-----END PGP SIGNATURE----- Added: release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.bz2.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +77ea847d1c7feb36bf263f93463158f1d2d8a143fc2c899dd2338c6e95507abcf99753e58559f6124d9d6bdd1aa968592b75eccd3826eda30c9c8bd4468b0e25 Added: release/ant/manual/apache-ant-1.10.16-manual.tar.gz ============================================================================== Binary file. No diff available. Added: release/ant/manual/apache-ant-1.10.16-manual.tar.gz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.gz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GAAKCRBDLcl+e3Pw +tmB8AP9mxm/wQczYoz3JUukQWHPja0RrDxsK32BGud1ZCaBOAwD8C/dGKQRoczHa +kdbIYwfFkES2iqoWPl6/gdUSuTJZPwA= +=Hv1V +-----END PGP SIGNATURE----- Added: release/ant/manual/apache-ant-1.10.16-manual.tar.gz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.gz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +63bc1b6cbe4254852c00525987decc8d6e17e04132c0e3c806cf340628f65285b268bd72572238a782b4e32c1dda05d055c1ecee0dd058ab1723850561de88d4 Added: release/ant/manual/apache-ant-1.10.16-manual.tar.xz ============================================================================== Binary file. No diff available. Added: release/ant/manual/apache-ant-1.10.16-manual.tar.xz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.xz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GQAKCRBDLcl+e3Pw +th5qAP4sVq0Bk416Y3QoZ/ERcQDR6dB4DiYMSPHYzyIfOW3hJQD+OktYVz+CBhWL +uTXOuaMU8bSahV+ucZxjPiqTQGAzMQg= +=TpjF +-----END PGP SIGNATURE----- Added: release/ant/manual/apache-ant-1.10.16-manual.tar.xz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.tar.xz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +af6b04113db96c9f0243d846c8dfd8c4fbfda5b6abd3151eabe2be57d70b83cf04f293513870497694fbf259a4922328c479cafeb75c21ac04476ea8c3829a03 Added: release/ant/manual/apache-ant-1.10.16-manual.zip ============================================================================== Binary file. No diff available. Added: release/ant/manual/apache-ant-1.10.16-manual.zip.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.zip.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3FwAKCRBDLcl+e3Pw +tktZAQCFzWTYfArzvwF9ID7IHn/8HFWgbg5zkXw3vEhB8bJHtgEAuzFHqkM5UWi6 +hE16MWAcw/4fj+iA90w9LDgoIEdeqwo= +=+P6I +-----END PGP SIGNATURE----- Added: release/ant/manual/apache-ant-1.10.16-manual.zip.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/manual/apache-ant-1.10.16-manual.zip.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +346b15fecb2c2ad8d91d6f2ec099fe83d50996a39f0a0eb7cd92c2caa701ce7dfe1dc2687824083c6c430249e6e513232b96f1a2cd82b1de8a9794b26f8b7899 Added: release/ant/source/apache-ant-1.10.16-src.tar.bz2 ============================================================================== Binary file. No diff available. Added: release/ant/source/apache-ant-1.10.16-src.tar.bz2.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.bz2.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GQAKCRBDLcl+e3Pw +tswWAQCsr9lvBKu/o48z3q8JEH8cgbd6SxFJOX/ZwxLH61ufaQEAguQE7PQi0IaB +8qyxoQCykEZiCyPCpoDwAwVZYuE34gc= +=9XFy +-----END PGP SIGNATURE----- Added: release/ant/source/apache-ant-1.10.16-src.tar.bz2.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.bz2.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +3842c54fd1b8e0f363517faeca7378f4b7bc970477b227f3671632cc6eadb830a0f6ca1638ec1efd4179ad3d200872f767aaeb34aea52981b5f62403b98124ab Added: release/ant/source/apache-ant-1.10.16-src.tar.gz ============================================================================== Binary file. No diff available. Added: release/ant/source/apache-ant-1.10.16-src.tar.gz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.gz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GAAKCRBDLcl+e3Pw +tkN2AP43ne2TE/UFoSyR6Q5WPJFHbDp3/nd6VEE1Nmfwt9WVTwEAwuClB4RoFVcQ +h8RGJXjzK6V9Ey8yUc3pUlyH4icC+Ac= +=n+4C +-----END PGP SIGNATURE----- Added: release/ant/source/apache-ant-1.10.16-src.tar.gz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.gz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +8bd3f34a422a7d2a82d8d811982c537ac5b76da002be17e93bd4b6ea5a288fe37020fe9dd1cf2c604d1c26f91820da5c880bdc351540a8bcf588ccc256cba5d2 Added: release/ant/source/apache-ant-1.10.16-src.tar.xz ============================================================================== Binary file. No diff available. Added: release/ant/source/apache-ant-1.10.16-src.tar.xz.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.xz.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3GgAKCRBDLcl+e3Pw +tu/AAQDlVOssL6Xf6jJWUlqlkH1+oRa/pXcp0RvrOpv1LA9AUQEAsi77ecnCyoII +0dV+ZetJnh8/pza9gfDtpAk8ZJUbMgU= +=gya4 +-----END PGP SIGNATURE----- Added: release/ant/source/apache-ant-1.10.16-src.tar.xz.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.tar.xz.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +5977b356f807ff81008dac9e837fc92fde1355bb2a92ca7eddfe5287337c4636711a538763606794b7441c865841a77ecce1aea76555907782737a30a5fd97ef Added: release/ant/source/apache-ant-1.10.16-src.zip ============================================================================== Binary file. No diff available. Added: release/ant/source/apache-ant-1.10.16-src.zip.asc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.zip.asc Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQS+1ZfvxL85nTKD9pdDLcl+e3PwtgUCacj3FwAKCRBDLcl+e3Pw +tukrAP9VRhpu78eZ/E0ZncoyejAfkaMJ+ZRQhqYSrFrCvz/AJwEArp1c5gcoKAff +eVFmoFlUtZSo5uhPJmBDkn9VErZp3Q0= +=Tom7 +-----END PGP SIGNATURE----- Added: release/ant/source/apache-ant-1.10.16-src.zip.sha512 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ release/ant/source/apache-ant-1.10.16-src.zip.sha512 Wed Apr 1 11:01:28 2026 (r83554) @@ -0,0 +1 @@ +528151aa29f2e7f9608b392380bccb1a38826280cf8e016b716d293e182e7aaa3ded59858af049764d3c49058914a74b2e54f419fd6aa8c1ee54f7364a208311
