Author: jaikiran
Date: Wed May  8 06:08:13 2019
New Revision: 33940

Log:
Release 1.10.6 of Ant

Added:
    release/ant/RELEASE-NOTES-1.10.6.html   (with props)
    release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2   (with props)
    release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.asc
    release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.sha512
    release/ant/binaries/apache-ant-1.10.6-bin.tar.gz   (with props)
    release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.asc
    release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.sha512
    release/ant/binaries/apache-ant-1.10.6-bin.tar.xz   (with props)
    release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.asc
    release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.sha512
    release/ant/binaries/apache-ant-1.10.6-bin.zip   (with props)
    release/ant/binaries/apache-ant-1.10.6-bin.zip.asc
    release/ant/binaries/apache-ant-1.10.6-bin.zip.sha512
    release/ant/manual/apache-ant-1.10.6-manual.tar.bz2   (with props)
    release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.asc
    release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.sha512
    release/ant/manual/apache-ant-1.10.6-manual.tar.gz   (with props)
    release/ant/manual/apache-ant-1.10.6-manual.tar.gz.asc
    release/ant/manual/apache-ant-1.10.6-manual.tar.gz.sha512
    release/ant/manual/apache-ant-1.10.6-manual.tar.xz   (with props)
    release/ant/manual/apache-ant-1.10.6-manual.tar.xz.asc
    release/ant/manual/apache-ant-1.10.6-manual.tar.xz.sha512
    release/ant/manual/apache-ant-1.10.6-manual.zip   (with props)
    release/ant/manual/apache-ant-1.10.6-manual.zip.asc
    release/ant/manual/apache-ant-1.10.6-manual.zip.sha512
    release/ant/source/apache-ant-1.10.6-src.tar.bz2   (with props)
    release/ant/source/apache-ant-1.10.6-src.tar.bz2.asc
    release/ant/source/apache-ant-1.10.6-src.tar.bz2.sha512
    release/ant/source/apache-ant-1.10.6-src.tar.gz   (with props)
    release/ant/source/apache-ant-1.10.6-src.tar.gz.asc
    release/ant/source/apache-ant-1.10.6-src.tar.gz.sha512
    release/ant/source/apache-ant-1.10.6-src.tar.xz   (with props)
    release/ant/source/apache-ant-1.10.6-src.tar.xz.asc
    release/ant/source/apache-ant-1.10.6-src.tar.xz.sha512
    release/ant/source/apache-ant-1.10.6-src.zip   (with props)
    release/ant/source/apache-ant-1.10.6-src.zip.asc
    release/ant/source/apache-ant-1.10.6-src.zip.sha512
Modified:
    release/ant/README.html

Modified: release/ant/README.html
==============================================================================
--- release/ant/README.html (original)
+++ release/ant/README.html Wed May  8 06:08:13 2019
@@ -7,7 +7,7 @@
         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.</p>
 
-      <p>The latest releases are 1.9.14 and 1.10.5 and 1.10.5 contains
+      <p>The latest releases are 1.9.14 and 1.10.6 and 1.10.6 contains
         a superset of 1.9.14 - with the exception of a few tasks and
         features that no longer work with Java8 anyway (like the apt
         task).</p>
@@ -73,28 +73,121 @@ Other changes:
    Bugzilla Report 63226
       </pre>
 
-      <h2>Release Notes of Apache Ant 1.10.5</h2>
+      <h2>Release Notes of Apache Ant 1.10.6</h2>
       <pre>
-Changes from Ant 1.10.4 TO Ant 1.10.5
+Changes from Ant 1.10.5 TO Ant 1.10.6
 =====================================
 
+Changes that could break older environments:
+-------------------------------------------
+
+ * image task no longer works on Java 9+ because internal classes
+   supporting Java Advanced Imaging are removed; imageio task (based on
+   ImageIO and AWT) is provided as a replacement.
+
+ * junitlauncher task has changed the class names and package names of
+   the task as well as some of the supporting classes of that task. If
+   any code depended on these class or package names, they will have to
+   be updated to reference these newly named classes. This however,
+   doesn't impact build scripts if their reference to junitlauncher task
+   was merely through the use of the &lt;junitlauncher> element.
+
+ * ClearCase#runS has been augmented by a two arg-version and the
+   one-arg version will no longer be called. This may affect
+   subclasses that have overridden runS.
+
 Fixed bugs:
 -----------
 
- * Fixes a regression in the "get" task where redirects
-   from a HTTP resource to a HTTPS resource started throwing
-   an exception.
-   Bugzilla Report 62499
-
- * the new allowFilesToEscapeDest didn't work when set to false and
-   archive entries contained relative paths with so many ".."
-   segnments that the resulting path would go beyond the file system
-   root.
-   Bugzilla Report 62502
+ * fetch.xml must retrieve runtime rather than compile dependencies for
+   mail task.
+   Bugzilla Report 62621
+
+ * Fixes an issue in junitreport task, which used to throw a
+   java.net.MalformedURLException when saxon was used on Windows OS.
+   Bugzilla Report 62594
+
+ * augment task now throws a BuildException (as noted in its manual)
+   instead of a IllegalStateException in the absence of the "id" attribute.
+   Bugzilla Report 62655
+
+ * org.apache.tools.zip.ZipOutputStream would sometimes potentially use
+   an incorrect compression level for a zip entry. This is now fixed.
+   Bugzilla Report 62686
+
+ * sync task, in some cases on case insensitive file systems, would consider
+   a file in a destination directory to be orphaned and would delete it.
+   This task has now been fixed to infer the case sensitivity of the filesystem
+   of the destination directory.
+   Bugzilla Report 62890
+
+ * Fixes a potential java.util.ConcurrentModificationException in
+   org.apache.tools.ant.Project#getCopyOfReferences.
+   Github Pull Request #81
+
+ * cccheckout would ignore an error of the "ls checkout" command even
+   if failOnError was set to false.
+   Bugzilla Report 63071
+
+ * The isreachable condition could in some cases return true even if the
+   actual address could potentially be unreachable. This is now fixed
+   and the resolved address is actually checked for reachability.
+
+ * Fixes an issue where scp transfer completion tracking wasn't being
+   triggered for 100% completion.
+   Github Pull Request #91
+
 
 Other changes:
 --------------
- * Java task now accepts a "sourcefile" attribute to allow single file
-   source program execution, a feature that is introduced in Java 11.
+ * generatekey task now supports SubjectAlternativeName during key
+   generation.
+
+ * the &lt;modified> selector has a new built-in algorithm 'lastmodified'
+   which computes a value based upon the lastmodified time of the file.
+
+ * junitlauncher task now supports running tests in a forked JVM. More
+   details available in the junitlauncher task manual.
+
+ * signjar and verifyjar now support the -providerName, -providerClass
+   and -providerArg command line options of keytool via new attributes.
+   Bugzilla Report 65234
+
+ * signjar and verifyjar now supported nested &lt;arg> elements for
+   command line arguments that are not supported explicitly by the
+   tasks via attributes.
+
+ * added several attributes to &lt;javadoc> that support modules.
+   Bugzilla Report 62424
+
+ * properties used or set by BuildFileTask/BuildFileRule are documented
+   in MagicTestNames. A new magic property, ant.test.basedir.ignore, is
+   introduced for cases where Ant projects set up for test purposes
+   must ignore basedir set externally by test harness.
+
+ * a new CharSet type is provided for encoding or charset attributes in
+   tasks that must deal with different character encodings in files,
+   file names and other string resources.
+
+ * org.apache.tools.ant.AntClassLoader is now multi-release jar aware.
+   Starting Java 9, jar files can be packaged as multi-release jars,
+   AntClassLoader now recognizes such multi-release jar files while
+   loading resources at runtime in Java 9+ runtime environments.
+   Bugzilla Report 62952
+
+ * Added jmod and link tasks, to support jmod and jlink tools of JDK 9+.
+   Github Pull Request #80
+
+ * Jsch library dependency has now been upgraded to 0.1.55. Jsch is
+   the library behind the sshexec and scp Ant tasks.
+   Github Pull Request #84
+
+ * The "http" condition, now has a "readTimeout" attribute which can be
+   used to control the amount of time to wait for the read to complete.
+   Bugzilla Report 63193
+
+ * ftp task manual has been updated to mention that the remote listing of
+   files honours the followsymlinks attribute.
+   Bugzilla Report 63226
 </pre>
 </body></html>

Added: release/ant/RELEASE-NOTES-1.10.6.html
==============================================================================
--- release/ant/RELEASE-NOTES-1.10.6.html (added)
+++ release/ant/RELEASE-NOTES-1.10.6.html Wed May  8 06:08:13 2019
@@ -0,0 +1,120 @@
+<html>
+<head>
+   <title>Release Notes of Apache Ant 1.10.6</title>
+</head>   
+<body><pre>
+Changes from Ant 1.10.5 TO Ant 1.10.6
+=====================================
+
+Changes that could break older environments:
+-------------------------------------------
+
+ * image task no longer works on Java 9+ because internal classes
+   supporting Java Advanced Imaging are removed; imageio task (based on
+   ImageIO and AWT) is provided as a replacement.
+
+ * junitlauncher task has changed the class names and package names of
+   the task as well as some of the supporting classes of that task. If
+   any code depended on these class or package names, they will have to
+   be updated to reference these newly named classes. This however,
+   doesn't impact build scripts if their reference to junitlauncher task
+   was merely through the use of the &lt;junitlauncher> element.
+
+ * ClearCase#runS has been augmented by a two arg-version and the
+   one-arg version will no longer be called. This may affect
+   subclasses that have overridden runS.
+
+Fixed bugs:
+-----------
+
+ * fetch.xml must retrieve runtime rather than compile dependencies for
+   mail task.
+   Bugzilla Report 62621
+
+ * Fixes an issue in junitreport task, which used to throw a
+   java.net.MalformedURLException when saxon was used on Windows OS.
+   Bugzilla Report 62594
+
+ * augment task now throws a BuildException (as noted in its manual)
+   instead of a IllegalStateException in the absence of the "id" attribute.
+   Bugzilla Report 62655
+
+ * org.apache.tools.zip.ZipOutputStream would sometimes potentially use
+   an incorrect compression level for a zip entry. This is now fixed.
+   Bugzilla Report 62686
+
+ * sync task, in some cases on case insensitive file systems, would consider
+   a file in a destination directory to be orphaned and would delete it.
+   This task has now been fixed to infer the case sensitivity of the filesystem
+   of the destination directory.
+   Bugzilla Report 62890
+
+ * Fixes a potential java.util.ConcurrentModificationException in
+   org.apache.tools.ant.Project#getCopyOfReferences.
+   Github Pull Request #81
+
+ * cccheckout would ignore an error of the "ls checkout" command even
+   if failOnError was set to false.
+   Bugzilla Report 63071
+
+ * The isreachable condition could in some cases return true even if the
+   actual address could potentially be unreachable. This is now fixed
+   and the resolved address is actually checked for reachability.
+
+ * Fixes an issue where scp transfer completion tracking wasn't being
+   triggered for 100% completion.
+   Github Pull Request #91
+
+
+Other changes:
+--------------
+ * generatekey task now supports SubjectAlternativeName during key
+   generation.
+
+ * the &lt;modified> selector has a new built-in algorithm 'lastmodified'
+   which computes a value based upon the lastmodified time of the file.
+
+ * junitlauncher task now supports running tests in a forked JVM. More
+   details available in the junitlauncher task manual.
+
+ * signjar and verifyjar now support the -providerName, -providerClass
+   and -providerArg command line options of keytool via new attributes.
+   Bugzilla Report 65234
+
+ * signjar and verifyjar now supported nested &lt;arg> elements for
+   command line arguments that are not supported explicitly by the
+   tasks via attributes.
+
+ * added several attributes to &lt;javadoc> that support modules.
+   Bugzilla Report 62424
+
+ * properties used or set by BuildFileTask/BuildFileRule are documented
+   in MagicTestNames. A new magic property, ant.test.basedir.ignore, is
+   introduced for cases where Ant projects set up for test purposes
+   must ignore basedir set externally by test harness.
+
+ * a new CharSet type is provided for encoding or charset attributes in
+   tasks that must deal with different character encodings in files,
+   file names and other string resources.
+
+ * org.apache.tools.ant.AntClassLoader is now multi-release jar aware.
+   Starting Java 9, jar files can be packaged as multi-release jars,
+   AntClassLoader now recognizes such multi-release jar files while
+   loading resources at runtime in Java 9+ runtime environments.
+   Bugzilla Report 62952
+
+ * Added jmod and link tasks, to support jmod and jlink tools of JDK 9+.
+   Github Pull Request #80
+
+ * Jsch library dependency has now been upgraded to 0.1.55. Jsch is
+   the library behind the sshexec and scp Ant tasks.
+   Github Pull Request #84
+
+ * The "http" condition, now has a "readTimeout" attribute which can be
+   used to control the amount of time to wait for the read to complete.
+   Bugzilla Report 63193
+
+ * ftp task manual has been updated to mention that the remote listing of
+   files honours the followsymlinks attribute.
+   Bugzilla Report 63226
+</pre></body></html>

Propchange: release/ant/RELEASE-NOTES-1.10.6.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.asc
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.asc (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UUACgkQ3bzBJwop
+0IHSRQ/8Dsk5IUI7KroyolgwMUIGrHTFKJwHtsMyu0kSxtMeGBpIwCPZuH6paPos
+UsVxmrlknT7xd4YaW6nVcM2d1658aWt+hzVNiKtpRN+ozB0xvAIHNcpeND8GHzcO
+rAx0yAgyP7ehbPm2qMza3P89IUYZJtItYtJjKxtv3jsQ54prG7PtojEv5Pem4/yB
+XogtMVmSAVc5YhCMFVznja0DPtshSqEO2BUSUyT9ZjiFyFHN9nghkVgvCsB8YUhF
+EfQtUSstw4CcCDw/KLft+D0vwhzTNxXnky/Cv+83fPUiAj177/n6IafQ5YZTdAi9
+86H4F7BdOt/y+ZtoMQ+YstEpZPzA2oJ6xVGuYLQvoXvq4AkH7yfqQX1RIU64ACSX
++ZIz39ukwoD81oSwgrZhTtDTeCztaM/GXVqxp/o2wGlQmVHwc994zUS/DeBOmMXP
+qFhjKscf09mZ/agiFSdp7qeA0Gx4wg3gCS8NeKs4NpoDhKTJkE69fv4d+ot++gVt
+1BK+E4dtWi5Z5Il/z4Rc+XohYwLAsGrsyAR024DFLcy4j2MFrNW7LNQaU+Ly949N
+H4pMT0UzdE08mMUhGKrG2RL+ut+B5Rvlu/lo8DtZXH4Nhyr3yJCXeCnFPiJvEHA+
+QAfqO56lbqJVdI1nBUk/5560r+CVGRJp8lqiR5ugxyJNDeDz/po=
+=MZiM
+-----END PGP SIGNATURE-----

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.sha512
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.sha512 (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.bz2.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+b942104b8b71e572899c32f612cde99dfc9362f8126aa80c8c9d252943d6c36c7c4529a252cefd4a75511ea160ead2ee951c17e4a5c1aca11b2cd3e868b03f4c

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/binaries/apache-ant-1.10.6-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.asc
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.asc (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UUACgkQ3bzBJwop
+0IEkCBAAkgbFDfcmQTACsd8t7clzQML7j1f4SUaZN+txw/CFsH9BgwQ17wflhh62
+HzUnoYvMChZr+NBHSW3MZkKyA97KEfyOYL3k47xgiRwpqAIwO9gKwp1hRWNvYmeT
+GL9Vhp9Q3shpOuK9hV3fYjjv8NK7OlXD1hiiqGfQUPE4BBCd4f1VJdgddQMvZpGr
+nPvNsCwpjDtvGGNSFy8W+RyhjpnrtbLPrkUMjzYMTkYm7nZt4lSwP7rq1VNf+fs+
+oF4J78zBvMi0FTW9uI6YFKiwnB2U5Wv2lzlTH8ZrlzbD0UCHZKgKhTP21Bdtstfm
+ru5mvlFPKtZoAZ0gMQq0aGnozXCJdEZwghWTXxgKsQ8C/FDsAT3kiRO3bWX6dECd
+5f+kuVju8mqBumU87UKKVJCVbc1YGb+l4AV1KageNPFi81PFygxnAtaiv7151mcm
+9uy6e9UYaNTCtF7saUlvTuv5O7iKagoGGXiHql19dy0c6bV8W4CMJgml+quIeTcQ
+vfGK0chvvcJxaH8Lr3VDAWJCfKO/lIN05riAhjzzdvzYQ11lEpxwvVISkllPdVnh
+LJNev+VPkpD0In3dHaCKIJ+j0VvkB0TNMmtl9dAPakFAwmc06y4bLZPHRYmSh+58
+aeVeAX6M4v+6x+pWjKSuluy2R8Hr71vpwZFbBhII7etSwsO1qT4=
+=a/2n
+-----END PGP SIGNATURE-----

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.sha512
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.sha512 (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.gz.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+c1a9694c3018e248000ff6f46d48af85f537ef3935e0d5256543c58a240084c0aff5289fd9e94cbc40d5442f3cc43592398047f2548fded40d9882be2b40750d

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/binaries/apache-ant-1.10.6-bin.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.asc
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.asc (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UYACgkQ3bzBJwop
+0IFy+RAAsUC0PRfUWC5qXdC/xBPne4vP1ybBumKMH37bIIkyBf+rx6SCfg7iGd5n
+oap/TLtgHYyQGtcF74iFnUGmchMFT+WsEGOzNivg3rXYvjvUrYK0H1irFHs8xILd
+EO6zh5c5nZZNTcD8l1MUXcIY/SPVJAsrf+LRBmtVQmEqJofMYTeE+7aGwVAxBgeU
+YT+iMZRSgqSWpO0aqKdwtnJAQSsBQJZinVmJanZUkMqGXf0QZplUWDaDh/L6J/j5
+SUB7w+FnKiZpvO2iyjN/88ULbWLX3Au19D+Fm1zRDiwTD3JvMlWan5ECW5szP+5s
+nrKYjy8WFxYLXtpuR6MjnYQYSpDICsfO3I+8xSRW7BQR4PCa3vXf9BRx0xiK/NQ0
+3rC/hwBh0j3k2dIDnMpSxfwqNa9BTLHaFN8tNLf9bQXJzSO4QLYDfc8Mh5WVEFp9
+w3GSJZWP+69xzDDpJUiYzdbBaNo1P9fWBuTu8XGOSNug7jslkDK27iIV8c4LYJPy
+hbxX0XtIlO0XiX+92FPdcdRFzJO+Zm4qkMKrNN3Zr0bTjWxsXnncyhdRtpjw+ECd
+IDP7QcbLMb496D7Dcyc7IVe/GcrW8wunGf+inQuRPEcpo/Ya7so16N87j3amZdbw
+62M3vJ7e1tOCy4JItFNK8L5qspTxU/jCIbPnDllZfOHCcyuYGcg=
+=pB4C
+-----END PGP SIGNATURE-----

Added: release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.sha512
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.sha512 (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.tar.xz.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+3285780184f02814e89d62bcfbb661a5fba2786e0d79dca21daca484d42cde0023b441c6461b70aa8eee8c30a20ec9aa7fb704a4595e7182472e5a232ed6bf89

Added: release/ant/binaries/apache-ant-1.10.6-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: release/ant/binaries/apache-ant-1.10.6-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/binaries/apache-ant-1.10.6-bin.zip.asc
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.zip.asc (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.zip.asc Wed May  8 06:08:13 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UQACgkQ3bzBJwop
+0IHbFA//eMRkGbQWSzikOnV7dv+gloEEAdX1QER/1hKct1zrKLLiFNGg9wJUP6Gy
+ti7ZwSq55XLIjL+T9dVttE1h+zVMVa5OO/i0QPaQsh0f41UxKATGtuinG/DsAO54
+G89kMPogp1nI22dozPTAdPHcFYHXDlHe2vdviCAfPv4KClzRJ4HD5bcBfONOtRn4
+PrxfXdcr0TFIrEqSB2+g9hZJvVyhThuyxYr1iIEAA/RGcgcyS9fYXzcEV1yAIpE5
+P/WhGVRoKrJptiBfioaaeehrHkex6vxOkD/njW2mB6JsUQNzkz/V0uaojPMsuO3E
+tIJ8cdrYTrdytfaD7RFmfVAsI1LOkY6Et6y1Hh/eX/7pBzdVYJ6TvHQY0oRUTfcI
+67bkwwTxRNaeb6LmfI4/w6+P4Qxy9EXVHoGn3b/j+qJj+9fuuAc6cFNzHocH+0Hb
+VYhOjmBUaK4Rejb4E8FE4Ga5fn8jrBAPrWokafhf96S615tNpBjOjYHin839N592
+Md4jDvzf7cLlusYvPV8M2v6RGkR0XZfkCZ337XnoMGQQkAoNFsNGMOazNFWQ/KPS
+UilhY+9bYqINe1wYNMtSxvb+rsrfgdRldl6mKPRApqKaSCZ8OnPTYafpzWTUSIkm
+fr0JamWd6V9tw87JvGM3Kkfg6gG0OldZIoE/KHMT1Uvtm+cDxlY=
+=nqDr
+-----END PGP SIGNATURE-----

Added: release/ant/binaries/apache-ant-1.10.6-bin.zip.sha512
==============================================================================
--- release/ant/binaries/apache-ant-1.10.6-bin.zip.sha512 (added)
+++ release/ant/binaries/apache-ant-1.10.6-bin.zip.sha512 Wed May  8 06:08:13 
2019
@@ -0,0 +1 @@
+9ba9467f05f1c7fa7161f857b0085461ce28401a2fe01a8062eec2254eaafc4b239fb3dc9298b5df5f27c2bb64618a8606a6885aa171604c541f4d5fe394b361

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: release/ant/manual/apache-ant-1.10.6-manual.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.asc
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.asc (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UYACgkQ3bzBJwop
+0IEJ1A//S78T/w+yStPjUqHdI7yFS6nNKZ/yoTeen4ayKX8OEEARd1P3mZuzzLG8
+dG4Q+6YgOxPIQJ6ljN4KxRiOzRwdVqax/kUDPrFJLyP8I7DKvUEruOA2litkeREo
+p+NQFSLeUEsqaXRH0pHMEg+HGe3KdDEA2VG3MN7hRSA0tIq+fquqwV1XZcfemJuw
+pIWFMUN98INEUYsrB0uUGvQ07mAehypzZ8ji72gBkazDgk3EuPZ9kgFbgvxgx0c3
+a3McXHLpux9S6Ae3dU/VpaMIBKIepFL0+YlPX4ClMMkvIJFN2cw+YZnKjDnYRFkU
+sjvdo2O5xeNaxRRu2xYsDkdUZghFo5UP+u/2CSpcAFernY3vfk2BJ2yd6Z7iplzp
+QsigaXOz0N8qAMXl4AhFEED5agtf7534IelcB/nwDfztXfsQKNeNVmhbaZL1tMAq
+XdNeuUmiQ2zMHZsPdT9gypGS61pwlkcjF5GcVk0A4S+NPaJMhCL1Oz4vUrScjjg4
+29kc8iTIHWin9eZMXmIhiImEucikZXPXO2+xco/IE1f2BovDHRjiXTUf+cPqR3hL
+DRoWoNwnFstIxNPxjdKGNLpPXqncB6BlfEhKE+2UZJewP0jC1+o2hnDpTkhV7Idh
+9ehg80iBOsfbXJzh5Z/L/kYwM9s6fhXiWK9ZZO/jx/ntxNWAZXg=
+=WGp+
+-----END PGP SIGNATURE-----

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.sha512
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.sha512 (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.bz2.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+a90227cf23f713272512bbf2736b27a82946f2be72a6ba1837da6b63fb4e7ae2b1bf589bedca3bc54504bbc4420d08d64ffcbd75c59a8efc15860076cb3470ae

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/manual/apache-ant-1.10.6-manual.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.gz.asc
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.gz.asc (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.gz.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UUACgkQ3bzBJwop
+0IFd8hAAh2oitGqyNc1YDTsjc4fkaJ1VZz7OyWrU8pkAIO99B+PgxpBlelp0XOR/
+yGbnf161IDfsR9Ia19/3P25m90ylq1ZlC2bIsnyozn7IA4wyF6h79JyPItklbgNo
+kW7faysDSSb/bhDJbuw7o6E2TmI2yylS1oqVOPZgq+E5fsall9IVODW6QbHmL3Ht
+tapHBU7/iSpYgxQ8EufajWaIRnDD1obE4OGPmlC85BWyx/Eb9SlTw1m2x4Hp00LA
+Kp2jl/hy4417ezJAMjXxC3MJDfNKJ1/Po+GXIinpMis+aADSKgKx6nHtipNyPzEP
+qC31kvEj0imSaZt6k2Ifh7Ae/nC3Sgvgn306bIIiG2MvdRhHgS/EE3TtlFb8NTrq
+9c01zEDCfLZu9oGatPJf2C5u9Cc+NfnHt1VprHHcl0PQExf4f+IXbKc2Dc5DMNh5
+ZqqAQTSKwmsHg3WAtovTh+z16Q3YtdAfSjw3Aywndp5gxqLjNgab8JVVvSb90JYX
+5fpMiZbk8px0E7hFoR0YnrRdh8yXImYHQL3/1tcjL3u2zhzUPm+ZaLNUwYto2y5Z
+mF4ptbniIt7n/Jlz9wII8eJNp9Mcnnu1+P4v1wl8JJ+4Tepw/c79B/NxRCpxJj+p
+8NbLQjQ1Vqbuu9sco6q0u+rCd+kk8e8mcMhZVeU0NGaU+npIMNQ=
+=EjMT
+-----END PGP SIGNATURE-----

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.gz.sha512
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.gz.sha512 (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.gz.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+02f4821139e4db93929992e28717d3ca1db24bfab7b3b07e0344d743e400a4fb27742ee618d4ef48e67bd3219661fa1bc157637c038529f2c94c26e4f727632d

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/manual/apache-ant-1.10.6-manual.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.xz.asc
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.xz.asc (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.xz.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UYACgkQ3bzBJwop
+0IGB5w/8COwI/C7CX1XKCkFnJJb0Oi/+bq06Jvu19c7UPd5+EBF77djjov6sf8p+
+UnaS9+KrVUTudNsrwbnr2Q6mY2l0PtwhccwShMk99QaskhDdVVROn1PPUYEhfcxQ
+1ZcA8fjTNx2uHkbKBW5BZPOYSNSIhwofyUi5u3hCHEcyqx8uyMKPKxB1vzXgWJtn
+KgHmY/8y5y1xs6DgPOdl9SFt8+TPJ08fD4DO7WmowEcnS0sH8jn8i5tX+kHoaAUq
+blE4ZA/rprf2apoigHysbNfWSUDtjuHpkW3IUxdmn6CAEVcHa0BZTeJxgQlTR6UC
+Kmn+BWWxAX5wnnvKNJcL/qA4yHvCO0JOqTKPnzSNODGSUFlVsC8wRzBhfQ6TpYZJ
+TfFckjsD1xpdzSmrupthQtWZvrI6/lA2hnLfowiPL/G/rE41R8qYJmjn11tZ6VcN
+Wd5NajKixB9ddfDm5a/3LO/p0eAcO7hOiokS76WpQ6h5XaOtoeURKSM9Ce9HP853
+xoUe+6Fyl1PTBS3UsRP2J9zL5WQZiYh6kOidOMQONP0UTfPTl6Ch6FUgp5Yq+1cu
+JIMZ+K/6/hxk3BNUf7CTA5wWAnawBDhDVjvtXqme6bTE99d0xsg61qUb7p5RUkDc
+yQ2foiv/QyNMWDWGuunrTTwUky3ZwM6TcRoQoJ7uzRlS/lJ5Vno=
+=mNMy
+-----END PGP SIGNATURE-----

Added: release/ant/manual/apache-ant-1.10.6-manual.tar.xz.sha512
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.tar.xz.sha512 (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.tar.xz.sha512 Wed May  8 
06:08:13 2019
@@ -0,0 +1 @@
+ba94b386a456f4b5269cb8b1547983fae5ab1cfa0decdb4f8aa2e20ac9128169c32f55aea492faa2d95fbca0d4e02e5c6cc6e1dbfc4d160f30200b76ec94e645

Added: release/ant/manual/apache-ant-1.10.6-manual.zip
==============================================================================
Binary file - no diff available.

Propchange: release/ant/manual/apache-ant-1.10.6-manual.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/manual/apache-ant-1.10.6-manual.zip.asc
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.zip.asc (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.zip.asc Wed May  8 06:08:13 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UQACgkQ3bzBJwop
+0IE84BAArYqN2hRIBn+MUONZgoQBwBVJMyNEJ3C8XHNqlPhkcvYvNWRK7QLbs0jK
+BjrX6pPZI+k/GyU+igSJZEeGLsRxFzTrM45r4IUH+yszoLan3X4Nqu9FZIxnXCRN
+ju9932aR1SRGRNg+ow7al8XUTJfkHLx3WdOLa5K933aRq4l9oBmPjnuOUVAU2iaV
+AzxvuGnIxl/QNkHaXDBl+6MF6uejlcceT0NCN0/vPudxxAco+FvN1CMzFqTZ769Q
+kBqknrxljgMiXRYlzLTQMtClakaEYlJ3nhc+PkeS/HoFyexhhy6n0yYYPsPlPeWl
+ONUMkjUTp4sJ1Ls6eXiMMsw0UHh30zEn9+hppni82eprMeSk2MGlv9qQjPsJviOW
+mR8a4B4aEJIeAyRqGlbU5ECdl+Jv5b+4xOnFaYRkpXgsf7cAHERU9qcTZxfcrNxI
+bcGUzWj80Vm40EPQoe9bDxU4jyz3j6iGkTsfB9wlTuQghkMl/8d2YnaAZ9xtUcO4
+nJpIlBCXtx6DLlNQtKCsgw1+1TxZzLrmZaz4534jKu5oVo7tak0VcBbMIswsybNx
+e/Iwz4NAStpH0wdXZEhcEu8i/25YQWvN0vWiCLydUMRmaxp/6ryA1AmLnQuJGtK0
+V5e9Lq+2vuUo+KufT/zg1aQY0FdKuUp3blm4jBRMCU43iPkvS2w=
+=eZn7
+-----END PGP SIGNATURE-----

Added: release/ant/manual/apache-ant-1.10.6-manual.zip.sha512
==============================================================================
--- release/ant/manual/apache-ant-1.10.6-manual.zip.sha512 (added)
+++ release/ant/manual/apache-ant-1.10.6-manual.zip.sha512 Wed May  8 06:08:13 
2019
@@ -0,0 +1 @@
+87614837d63f515e0f6fa03d98178aa69f9916b1814434e660c966966268320ab94e929790b12ecf9f245dd58e2ad2efd77542283103de525091eef247cca3c0

Added: release/ant/source/apache-ant-1.10.6-src.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: release/ant/source/apache-ant-1.10.6-src.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/source/apache-ant-1.10.6-src.tar.bz2.asc
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.bz2.asc (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.bz2.asc Wed May  8 06:08:13 
2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UYACgkQ3bzBJwop
+0IGdtw/+Ot8MC9Y89FJnlZCXz69WwZDf2kk+Nd/v0JM2+r/jvzEnOn4N0FJEQ5s3
+3u+LjQnGt6fUbW37+QEVCNwQhYONg4912YfzH4gLPExtJYnG6dI1LO4RwaHmP5+p
+Qxo7RNpKd7ewcDTXkAcLMTheWotRaAJGjpAi8I5vKrNANt2OSMi0R/R/G4o4lX67
+v4CdaJ+YHeQl2IxQgdIMJI0FaF3O/OL5xOk6+mU9+UoGKj8xc03TKlcJT8v2shB1
+mlZghAlpBT3u4Mzf9igsYu9UCwMYKHbvxC2kdhuXBjYN3oT+OxlsxLMo36YG27ZE
+wvBApDaTgpq9O+k78bUxKBGMFOwkbyJ+uSWAMQqy9Lu9WZbNw/tX6eiSYYwSsmWp
+Ml8QnSMvXUFP6ZF410iHxZ57ebRRpe2aYW7fKZ3QSLt2W3900sRm56IqCGe5/Fa6
+XqjMami702Fh3q0lBIPr9v5SBN5J07zUHilvHOZTyLrpc+/gtsp5paGpFyo2ybp/
+VEkLiwm9mPwH+cn/9wGvnH4nYG8cNQHNoWZEhDkkTvJ69b3dfY747df6camqICEk
+9FzvwRIxb+QfEEpfGSoTPAjZXbpkz4s5szOBIe13M4oxsr9NNUU63430aVN962jb
+PDznSbvgs/6SwQrPCfH49lKXKLK4HOXOAEXAaB7rkvQGAnqospA=
+=pBcS
+-----END PGP SIGNATURE-----

Added: release/ant/source/apache-ant-1.10.6-src.tar.bz2.sha512
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.bz2.sha512 (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.bz2.sha512 Wed May  8 06:08:13 
2019
@@ -0,0 +1 @@
+94c5cfc280f0ba416b1a777e19474648c493c61c7c322044926f10cc72c210079247fa9066044f74b3bf463240aed1884066bd3e698136d94df419271820f696

Added: release/ant/source/apache-ant-1.10.6-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/source/apache-ant-1.10.6-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/ant/source/apache-ant-1.10.6-src.tar.gz.asc
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.gz.asc (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.gz.asc Wed May  8 06:08:13 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UUACgkQ3bzBJwop
+0IEw2w//SqUbyVh9NF7AyFB+xUpH/6qTsiAfLJZI35ggzmu5L0setXYW4ZJECUyv
+InnmzrRGjvQvMFmEWVWSBjB6w0hD3mUHnO4Fh2ig0qlnivyz/+Sr53pNzVsh4nX+
++ujAO/fDfVowpjoy0lXCVi6jQ/98T5Clo9KfrzeuvmzvCfW6jTkNrWV5mGkX7sln
+vTZ33+JWM1M3WbFsSPcXilkw7icr7QMTb/LakHwdReT0ks6/+hPX7bK71TTQcfjQ
+nEGYQUkf/ojxZ3GlaUDhCRyrS8FxD1IA6XMBI5xRxfmZQnuG6vrOlRnVeFHp5cN8
++iJ59nPzVbyNP968YdLAyaCUgf9Fnn4Bgeb/5CGePwnYm2324YjuHEpgYiWRIWDc
+l2PkuXT/6yUfjKCA2VfOoo7F3H9GwCoqrPJbnOlwHXw898lr8kKdBNdj0gaGR2R9
+irZwZ2W+SArmwRX9GARjyg1+LbClDxc11iaJ6+jnAHHKiLkqb3Im5kheAjnozgUC
+7m5LbXfxJdlfXjp9VYxOm/ytJPgkOutjkxKZ5wnWfsyE9MxWssVuoZotxOZfFwEj
+P9CX+HyF5W9I5bUd2eZ+OEudCTK3YxsaVq8WFUgi5u8tLIgcraXiqZvgdUvyV+0v
+MSxBHm7Rgzqoj5ARSekLlBdEFi/ZkYVXd9JWzCKKpkXV8egXsNs=
+=CCE/
+-----END PGP SIGNATURE-----

Added: release/ant/source/apache-ant-1.10.6-src.tar.gz.sha512
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.gz.sha512 (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.gz.sha512 Wed May  8 06:08:13 
2019
@@ -0,0 +1 @@
+2bef0cf5f53ce9fa6e9dc7a673745f75bcd0df027f9ff07442cf66bc8d7d99e022153b08d20d314061b497763e85d587c3087952b3f5730e5a19b2656f3236fb

Added: release/ant/source/apache-ant-1.10.6-src.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: release/ant/source/apache-ant-1.10.6-src.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/source/apache-ant-1.10.6-src.tar.xz.asc
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.xz.asc (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.xz.asc Wed May  8 06:08:13 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UYACgkQ3bzBJwop
+0IHUAA//Q2NjzojE7mKwVrq+4TES8N0yxzzbRZg7xJIp3bBMs435kig5BVDUSZO9
+45msz1UsyxY9FEV4PzudEF1DsOUyNnLgfHs5ojpwyiBfST7voVdCSwVdoKzg0kat
+dKaqWSFQAc6E9bmZVLWC6fgedWM0w06Z+Z08vkUmnvcPpDoaOIbG7XYxmtr4IgvT
+whxeglvwwtpLOfzBbUCyDkM0Jh1NXMKUCBexJ05G/QVfOyzeL9iVqTHQ4HjVi2QA
+Z6PTsVHWsyeB2mXiAC/rTxUn8Q+rLKLZm3bvDobaPySL60grceuHMtbA5SR5w6jO
+avNF2oQQ1n7vXC4vqV/l+s/HF3csvgpclGd+mWtLr2RpkCqP6XIDQpI32oenb7DL
+Ybs5LJS7tIWpAbwL7PhdCEdejUUsghX9SktZ0TmrR9n29Ks7LpPNooApbrJljxZa
+hNQnGYRuDD6tE0F6QaKLrl40XdF2CdygcN4piek2CUHDS5BGUyG60azoxUg3R8tm
+1zt9QAWoXYhVp4mtjmw0z3EIstK1xsP5PJdIGvg12cPTUuVsuIuv90q90ouWCoxr
+BJa6HVvzKPiHScwf/Xx05lLrFVBCLbElbRnKZPyFxzSUM85XIDtYY8eAYjWoVIiI
+00jFQxUFlnhKowSvjJPspEkhCz5OPRDRFQOWZUTBUV9vvnORuiM=
+=LC/F
+-----END PGP SIGNATURE-----

Added: release/ant/source/apache-ant-1.10.6-src.tar.xz.sha512
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.tar.xz.sha512 (added)
+++ release/ant/source/apache-ant-1.10.6-src.tar.xz.sha512 Wed May  8 06:08:13 
2019
@@ -0,0 +1 @@
+34eb26e8bfd9be27b89992cea0aadd2d1b12851ec47c690ea485db52267df659dab5aef2dbce58251891c3ddfd7e86cad449e133497e9379becde8fc8e35d908

Added: release/ant/source/apache-ant-1.10.6-src.zip
==============================================================================
Binary file - no diff available.

Propchange: release/ant/source/apache-ant-1.10.6-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/ant/source/apache-ant-1.10.6-src.zip.asc
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.zip.asc (added)
+++ release/ant/source/apache-ant-1.10.6-src.zip.asc Wed May  8 06:08:13 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAlzK7UUACgkQ3bzBJwop
+0IG2JBAAgLAAVYDmZyteh0EDEFR3s1HrPDVYjvLMIjTVcvR0G4/IcJ9H7Q7GF9jl
+bfNT7Yvyy99kEt/LwxNN9TdcZNEU7XTUGO2VWjL1QKJQRPPuKaWV9aEurL+t8HTi
+0pbARhN9niJ3LhR4qZV0WfqsVPgxl74szUHrmDyrQwo+WlR875D1djK46wvMLUJ3
+sx+rkBeTb5ysDGGBBhOhK3F52NpqilTRFY1RZvDGNMx8DDBJ007pwAVvdIOj9Iew
+qLRYqyoLLgd48cx1KosKEySPQKd2bZEyVj2OWkx+WFYeMnBLqo/YVjC3hmr1CD1g
+qs38TbB7JymnUFEGaZJqDugfFz+Hr1mFLqqgOiPs3Rlvo3l6mCx26dB0wiKgMcGf
+1L+p7cs+wY7YZT/MJQjMMnZsZeo/4yJ2RK0siKQY3dRLqMIJKuFKe26sXlA4URfA
+oxjs8wRqG0PedL/hl1a/DoX1ONp9W79zhzxUekdK/xIPEHQBXTXU5J/HgMuMOyku
+fQiYRBWqBOT7H3ycLGg6Ikn826RkEezwiVr0u/g6c+MjTz2NtAE0xTfe7R9owlKS
+l0QFjGRnQV3ZlZL092UlL1a6yUX7fdWrddY+alOj0oq0jPxxhmaQ18lQQOrCY0ym
+CiukedyrlZRMhmHOwaoij8hw9Q+rAAb8PgSFoVWOPo1Nu6o5dDo=
+=Lx8C
+-----END PGP SIGNATURE-----

Added: release/ant/source/apache-ant-1.10.6-src.zip.sha512
==============================================================================
--- release/ant/source/apache-ant-1.10.6-src.zip.sha512 (added)
+++ release/ant/source/apache-ant-1.10.6-src.zip.sha512 Wed May  8 06:08:13 2019
@@ -0,0 +1 @@
+62de9e5096a9a279c8276979df075d9eed96400c1a5c54d69180f77cc263903f611de5876ada29a7ddae39d5291aee8b850ca7dffb5b02094cf4d33a9bcc97cb


Reply via email to