Author: bodewig
Date: Sat Feb  3 16:59:14 2018
New Revision: 24668

Log:
RC1 of Ant 1.10.2

Added:
    dev/ant/RELEASE-NOTES-1.10.2.html   (with props)
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2   (with props)
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.asc
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.md5
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha1
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha512
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz   (with props)
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.asc
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.md5
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha1
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha512
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz   (with props)
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.md5
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha1
    dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha512
    dev/ant/binaries/apache-ant-1.10.2-bin.zip   (with props)
    dev/ant/binaries/apache-ant-1.10.2-bin.zip.asc
    dev/ant/binaries/apache-ant-1.10.2-bin.zip.md5
    dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha1
    dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha512
    dev/ant/source/apache-ant-1.10.2-src.tar.bz2   (with props)
    dev/ant/source/apache-ant-1.10.2-src.tar.bz2.asc
    dev/ant/source/apache-ant-1.10.2-src.tar.bz2.md5
    dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha1
    dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha512
    dev/ant/source/apache-ant-1.10.2-src.tar.gz   (with props)
    dev/ant/source/apache-ant-1.10.2-src.tar.gz.asc
    dev/ant/source/apache-ant-1.10.2-src.tar.gz.md5
    dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha1
    dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha512
    dev/ant/source/apache-ant-1.10.2-src.tar.xz   (with props)
    dev/ant/source/apache-ant-1.10.2-src.tar.xz.md5
    dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha1
    dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha512
    dev/ant/source/apache-ant-1.10.2-src.zip   (with props)
    dev/ant/source/apache-ant-1.10.2-src.zip.asc
    dev/ant/source/apache-ant-1.10.2-src.zip.md5
    dev/ant/source/apache-ant-1.10.2-src.zip.sha1
    dev/ant/source/apache-ant-1.10.2-src.zip.sha512

Added: dev/ant/RELEASE-NOTES-1.10.2.html
==============================================================================
--- dev/ant/RELEASE-NOTES-1.10.2.html (added)
+++ dev/ant/RELEASE-NOTES-1.10.2.html Sat Feb  3 16:59:14 2018
@@ -0,0 +1,136 @@
+<html>
+  <head><title>Release Notes of Apache Ant 1.10.2</title></head>
+  <body><pre>
+Changes from Ant 1.10.1 TO Ant 1.10.2
+=====================================
+
+Changes that could break older environments:
+-------------------------------------------
+
+ * updated the dependency of BCEL to 6.2.
+   Bugzilla Report 61196
+
+ * delete task previously would silently accept wildcard (*)
+   value for the "file" attribute. That's no longer the case
+   and an exception could get thrown by the underlying filesystem
+   for such use. Usage like:
+
+   &lt;delete file="/foo/bar/*.something"/>
+
+   should instead be changed to use resource collections like:
+
+   &lt;delete>
+        &lt;fileset dir="/foo/bar/" includes="*.something"/>
+   &lt;/delete>
+
+ * Commons Net 3.6 is binary-code, but not source compatible;
+   see change list of Commons Net 3.0 for details
+
+ * The Log4jListener is marked as deprecated as the required log4j library
+   (in version 1.x) is not maintained any more.
+
+ * Image task is marked as deprecated as the required JAI library is not
+   maintained any more and internal APIs that JAI depended on are no longer
+   available in Java 9.
+
+Fixed bugs:
+-----------
+
+ * &lt;genkey>'s &lt;dname> child now skips &lt;param>s that lack a key or
+   value.
+   Bugzilla Report 60767
+
+ * bootstrapping Ant on Windows failed
+   Bugzilla Report 61027
+
+ * Fixed the issue where the SCP based tasks would try to change
+   the permissions on the parent directory of a transferred file,
+   instead of changing it on the transferred file itself.
+   Bugzilla Reports 59648 and 43271
+
+ * Fixed the issue where the source file being copied could end
+   up being corrupted if the target of the copy happened to be
+   the same source file (symlinked back to itself).
+   Bugzilla Report 60644
+
+ * Fixed the issue where symlink creation with "overwrite=false",
+   on existing symlink whose target was a directory, would end
+   up creating a new symlink under the target directory.
+   Bugzilla Report 58683
+
+ * Improvement to the Zip task for reduced memory usage in certain
+   cases. Thanks to Glen Lewis for reporting the issue and
+   suggesting the fix.
+   Bugzilla Report 19516
+
+ * Fixed an issue where the content redirected from output/error
+   streams of a process, could end up being truncated.
+   Bugzilla Report 58833, 58451
+
+ * &lt;fileset>/&lt;zipfileset>/&lt;tarfileset> will now throw an exception
+   with a more useful error message when setFile is called twice on
+   the same instance.
+   Bugzilla Report 62071
+
+Other changes:
+--------------
+
+ * Added forceCsvQuoteChar option to &lt;csv> task. When enabled the
+   values always get quoted.
+   Github Pull Request #32
+
+ * Added &lt;encoding> attributes to various script related tasks and a
+   compiled attribute to scriptdef.
+   Github Pull Request #30
+
+ * Added support for jarsigner's -tsadigestalg to &lt;signjar>.
+   Bugzilla Report 60665
+
+ * added "regexp" attribute to &lt;linecontainsregexp>
+   Bugzilla Report 60968
+
+ * reduced GC pressure by replacing all usage of FileInputStream and
+   FileOutputStream.
+
+ * Task can now also use attribute setters that expect a
+   java.nio.file.Path argument.
+   Bugzilla Report 61042
+
+ * added a new magic property ant.tstamp.now that can be used to
+   override the current time/date used by &lt;tstamp>.
+   Bugzilla Report 61079
+
+ * added Orion support to ejbjar
+   Github Pull Request #33
+
+ * SCP task, when configured to use SFTP protocol, now preserves last
+   modified timestamp on files that it uploads, if the
+   preserveLastModified attribute is set to true for that task
+   Bugzilla Report 58589
+
+ * zip and the related tasks can now set the modification time of all
+   entries to a fixed timestamp.
+   Github Pull Request #36
+
+ * Jsch library dependency has now been upgraded to 0.1.54. Jsch is
+   the library behind the sshexec and scp Ant tasks.
+   Bugzilla Report 61718
+
+ * Added a new &lt;javaversion> condition.
+
+ * added "javac10+" as new supported value for javac's compiler attribute.
+
+ * javah has been removed from Java 10. The task will now throw an
+   exception if you try to use it while running Java 10 or newer.
+
+ * Updated Maven Ant Tasks, Jakarta Regexp and JUnit 4 to the latest
+   stable version (2.1.3, 1.4, and 4.12 respectively); updated
+   JRuby to the latest Java 5 compatible version (1.6.8); added
+   resolve target for AntUnit to facilitate updates.
+   Github Pull Request #50
+
+ * Updated Java Mail API, Jython, Rhino and Commons Net to the latest
+   stable version (1.6.0, 2.7.0, 1.7.7.2 and 3.6, respectively).
+   Github Pull Request #53
+</pre></body></html>
+  

Propchange: dev/ant/RELEASE-NOTES-1.10.2.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VUTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLcgOw
+AJ9Z2ZF25LNdnTDEC+u8wyXv/CER/gCfRJr/+ySI7/YmVkV17cYobyx2g7g=
+=HXXY
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.md5
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.md5 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+6dffefd0ee2cb623febfc5359eabe76a

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha1
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha1 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+bc67d9bb5656382ace23f5647799fb77397cbcb5

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.bz2.sha512 Sat Feb  3 16:59:14 
2018
@@ -0,0 +1 @@
+9d774009d9559c6c65d9f80d19c9fc1941c436e00df5a441fc9367a69e35925bc73a513784d5cf1aa0ec8c299c01baa5caab09437912f121e86e3990c3123496

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

Propchange: dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VQTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLcsX2
+AJ4iqOnY/DfQAZEhMsJsUJZCbEEsAgCeK8Ga6/+RlhrTY2pRccaLhpTI3jU=
+=bfjI
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.md5
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.md5 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+51b89be8b73812230d2ee12ea58442fd

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha1
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha1 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+2fa1834f6de03592bf3c01ce3c455beed38b3249

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.gz.sha512 Sat Feb  3 16:59:14 
2018
@@ -0,0 +1 @@
+54805d9b263c3df3552fa4f9221483fc58ebebdbbdb2c34c97b8b13f41290cf9c23f54188a231eb6f3ac9588d618fc74ae0bde35ff80404e00479f1b08555417

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

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

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.md5
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.md5 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+72bfb51f62e57216efa01b8ff567e76a

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha1
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha1 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+f8b24adf1813b6411598c3085c91300b1bba562d

Added: dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.tar.xz.sha512 Sat Feb  3 16:59:14 
2018
@@ -0,0 +1 @@
+a1af5173eafbc5b76fe0ae62c656c96a4c3bfd9d67b10ad19fef53152ae73d61aa05d1b57ceca1d007475113f234feb9d1541d2c624f6ac606361a6e6e375385

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

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

Added: dev/ant/binaries/apache-ant-1.10.2-bin.zip.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.zip.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.zip.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VQTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLcriF
+AJ9BoVG1VsCBhk69pm2wlBh1utfpbgCfYwy/sjJb/TNnTAKo6Tm/3sIuCdQ=
+=Vfn8
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.2-bin.zip.md5
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.zip.md5 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.zip.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+2f496d6d912e6d0d212ac8c0663585bb

Added: dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha1
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha1 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+743988a6b767804067a629edbec6e4cc6bf6660f

Added: dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.2-bin.zip.sha512 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+2b6b3b1769a38e0037c8f3825ffeb2094fbb2985128f3b03d1b10d792e75850d13cf04513a0c59a8ca89f1a446ca509def0bd5c2f2644f51054f56f2007a29d9

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

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

Added: dev/ant/source/apache-ant-1.10.2-src.tar.bz2.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.bz2.asc (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.bz2.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VUTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLcqJS
+AJ9Xw4pGPBgLxQhtzTc6ITXcEp+bhACgsFQxjBn6v1kOW58vD8RF11TdiuQ=
+=UN93
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.2-src.tar.bz2.md5
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.bz2.md5 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.bz2.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+2852eeb7962bfbc79c3e7086215f8e64

Added: dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha1
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha1 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+58efd66d4ac3a8bec39973db6da6c9440b873c97

Added: dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.bz2.sha512 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+ad183d94e1a284719c3c83b8ae4049be0ee7867fd777017f0de8b887d03089925d198d5002a0526d781917ef32a37264018cf90ed8e8a60399f3b64aa87419bb

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

Propchange: dev/ant/source/apache-ant-1.10.2-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/source/apache-ant-1.10.2-src.tar.gz.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.gz.asc (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.gz.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VQTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLchhw
+AJ9VswA/mVmAm93wF2bsgT+exYXvcACgkCCPq4KOyv9DG2YDRCsRmfbRIsI=
+=enwO
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.2-src.tar.gz.md5
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.gz.md5 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.gz.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+c6562dec381d145f0155cc2fd60e3983

Added: dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha1
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha1 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+49ef4666665ab53176de53585e7471dd927053a6

Added: dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.gz.sha512 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+6ea2b9e58ceff61da135b27295a4053779da57d698b07970e63f5a23ec3d1ef1be35ba6b196a2ce11a9c8c795764acee634d2ddcd7dd55ba876fab9d563d3876

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

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

Added: dev/ant/source/apache-ant-1.10.2-src.tar.xz.md5
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.xz.md5 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.xz.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+57235f3dccfc4b18a260862905ce6c04

Added: dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha1
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha1 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+2677eb88fc0b5d6a4d4f0f2c3b64c1c49eba3ae8

Added: dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.tar.xz.sha512 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+31ceee05a3fe7ea04d04fa086a8af64d2d82526a54bcc06d3ac97dff78c2af14df699f6643ad399f73fdfa668603ac1bf9761185618974d14fc56733bafa076d

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

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

Added: dev/ant/source/apache-ant-1.10.2-src.zip.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.zip.asc (added)
+++ dev/ant/source/apache-ant-1.10.2-src.zip.asc Sat Feb  3 16:59:14 2018
@@ -0,0 +1,6 @@
+-----BEGIN PGP SIGNATURE-----
+
+iFoEABECABoFAlp16VQTHGJvZGV3aWdAYXBhY2hlLm9yZwAKCRCiEVrhX2uLchiL
+AJ9Yfs4xe9KW5ZoiROR3kX7YF9K/ZQCgh589PhERaF12Wb6fujxSZH/Su4g=
+=XbZf
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.2-src.zip.md5
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.zip.md5 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.zip.md5 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+11ea88d5eaf53364ae58a3a2b2e659b5

Added: dev/ant/source/apache-ant-1.10.2-src.zip.sha1
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.zip.sha1 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.zip.sha1 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+ac172a61fc82064f9579c8d9e9db4cfe847a3ce7

Added: dev/ant/source/apache-ant-1.10.2-src.zip.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.2-src.zip.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.2-src.zip.sha512 Sat Feb  3 16:59:14 2018
@@ -0,0 +1 @@
+05b3dbf516cb91dd33fa890343f2a3845c8148722fa65c3eec438aee4611dfc3f48e02db1cbf1e36ff8d6b60443d92a81dd955a80093a3e581c44475139efe6e


Reply via email to