Author: elserj
Date: Thu May 19 01:53:22 2016
New Revision: 13682

Log:
Add commons-vfs 2.1 artifacts to dist/release and remove commons-vfs 2.0

Added:
    release/commons/vfs/RELEASE-NOTES.txt
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz   
(with props)
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.asc
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.md5
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.sha1
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip   (with 
props)
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.asc
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.md5
    release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.sha1
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz   (with 
props)
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.asc
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.md5
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.sha1
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip   (with 
props)
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.asc
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.md5
    release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.sha1
Removed:
    release/commons/vfs/binaries/commons-vfs-2.0.tar.gz
    release/commons/vfs/binaries/commons-vfs-2.0.tar.gz.asc
    release/commons/vfs/binaries/commons-vfs-2.0.tar.gz.md5
    release/commons/vfs/binaries/commons-vfs-2.0.tar.gz.sha1
    release/commons/vfs/binaries/commons-vfs-2.0.zip
    release/commons/vfs/binaries/commons-vfs-2.0.zip.asc
    release/commons/vfs/binaries/commons-vfs-2.0.zip.md5
    release/commons/vfs/binaries/commons-vfs-2.0.zip.sha1
    release/commons/vfs/source/commons-vfs-2.0-src.tar.gz
    release/commons/vfs/source/commons-vfs-2.0-src.tar.gz.asc
    release/commons/vfs/source/commons-vfs-2.0-src.tar.gz.md5
    release/commons/vfs/source/commons-vfs-2.0-src.tar.gz.sha1
    release/commons/vfs/source/commons-vfs-2.0-src.zip
    release/commons/vfs/source/commons-vfs-2.0-src.zip.asc
    release/commons/vfs/source/commons-vfs-2.0-src.zip.md5
    release/commons/vfs/source/commons-vfs-2.0-src.zip.sha1

Added: release/commons/vfs/RELEASE-NOTES.txt
==============================================================================
--- release/commons/vfs/RELEASE-NOTES.txt (added)
+++ release/commons/vfs/RELEASE-NOTES.txt Thu May 19 01:53:22 2016
@@ -0,0 +1,216 @@
+              Apache Commons VFS 2.1
+                  RELEASE NOTES
+
+The Apache Commons VFS team is pleased to announce the release of Apache 
Commons VFS 2.1
+
+Apache Commons VFS is a Virtual File System library.
+
+New features and bug fix release.
+
+Please note that the Clirr report shows several errors.
+These may affect source compatibility.
+However they should not affect binary compatibility, as explained below.
+
+FileContent, FileName, FileObject, FileSystemManager, RandomAccessContent:
+The above interfaces have been updated to add new methods.
+This does not affect binary compatibility; for details please see:
+https://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html#jls-13.5.3-100
+The above changes may affect source compatibility.
+ Changes to method parameters and return types in TarFileObject and 
TarFileSystem
+The original parameter/return types were the following:
+org.apache.commons.vfs2.provider.tar.TarEntry
+org.apache.commons.vfs2.provider.tar.TarInputStream
+The above were package protected, so any methods using them did not form part 
of the public API.
+Therefore source and binary compatibility is not affected.
+
+Changes in this version include:
+
+New features:
+o VFS-198:  [http] Make user agent configurable. Thanks to Andrew Franklin, 
Simon Legner.
+o VFS-555:  [hdfs] Add the ability to specify an HDFS configuration file with 
HdfsFileSystemConfigBuilder.
+o           [example] make VFS Shell print version and implement new 'info' 
command.
+o VFS-532:  [FTP] Allow configuring remoteVerificationEnabled on FTPClient 
instances. Thanks to Gareth Daniel Smith.
+o VFS-468:  [FTPS] Add option for KeyManager (and TrustManager) to support 
FTPS servers that ask for the client certificate for authentication.
+o VFS-412:  [FTPS] Add support for command to set the 
DataChannelProtectionLevel. Thanks to Jose Juan Montiel.
+o VFS-442:  [HDFS] Add an HDFS FileSystem Provider. Thanks to Dave Marion.
+o VFS-447:  [FTP/FTPS] Update Apache Commons Net to 3.2 from 3.1.
+o VFS-445:  Add FileSystemManager.resolveFile(URI) and resolveFile(URL).
+o VFS-440:  [SFTP] Stream (e.g. netcat) proxy for Sftp file system (aka 
ProxyCommand). Thanks to bpiwowar.
+o VFS-432:  [HTTP][WebDAV] Allow HTTP follow redirect.
+o VFS-431:  FileSystemOption does not implement toString().
+o VFS-405:  Get/set the file permissions. Thanks to dwaszak.
+o VFS-426:  HTTP URL query string not part of cache key. Thanks to 
daniel.bergholm.
+o VFS-425:  Add API FileObject.isExecutable().
+o VFS-421:  [SFTP] Configure a custom Identity Repository. Thanks to bpiwowar.
+o VFS-417:  [RAM][Local] Add and implement new API: 
RandomAccessContent.setLength(long).
+o VFS-400:  Add a FileSelector based on regular expressions.
+o VFS-254:  Let FileObject and FileContent extend java.io.Closeable. Thanks to 
mzawirski.
+o VFS-252:  [SMB] SmbFileObject does not support setLastModifiedTime while 
jcifs supports it.
+o VFS-313:  [FTP] Configuration does not include option for setting socket 
timeout. Thanks to bda...@saintandreas.org.
+o VFS-414:  [FTP] Add config API to set the file type.
+o VFS-182:  [FTP] Usage of FTP with heterogeneous FTP server (possibility of 
using Ascii file type).
+o VFS-381:  Iterate over a FileObject using the Java "foreach" statement, to 
provide all descendents of a FileObject.
+o VFS-373:  Add FileContent write APIs.
+o VFS-372:  Add constructors FileDepthSelector() and FileDepthSelector(int).
+o VFS-371:  Add FileObject API deleteAll().
+o VFS-370:  Add a FileExtensionSelector class.
+o VFS-367:  Add APIs FileObject isFile(), FileObject isFolder(), and FileName 
isFile().
+
+Fixed Bugs:
+o VFS-424:  Fix StandardFileSystemManager class loading so it works in a OSGi 
environment.
+o VFS-490:  [vfsclassloader] Do not open folders with .jar extension. Adds 
tests.
+o VFS-582:  [tests] revert rename of getTestDirectoryFile to make test classes 
more compatible for external providers.
+o VFS-480:  Make startup of SoftRefsFileCache cleaner thread work and less 
racy to avoid leaks.
+o VFS-549:  Use File.seperator instead of getProperty("file.separator").
+o VFS-567:  [ftp] Ignore exceptions while QUIT/disconnect. Thanks to Antonio 
Petrelli.
+o VFS-572:  [sftp] better documentation for knownhosts file option. Thanks to 
Sandra Parsick.
+o VFS-574:  Ensure FileOpertionProviders are closed. Adds some testcases.
+            The error code for missing operations exceptions corrected: 
vfs.operation/operation-not-supported.error
+o VFS-279:  [local] Avoid ClassCastException when replicating local files 
while OnCall caching is active. Thanks to Didier Earith, Simon Legner.
+o VFS-297:  [sftp] VSF fails to reuse FileSystem instances if 
FileSystemOptions contain
+            an array as value. Reported for SFTP using identities. Thanks to 
Kirill Safonov, Jimmy Praet.
+o VFS-202:  [http] Allow URLs responding with 405 to HEAD requests. Thanks to 
Sergey Vladimirov, Simon Legner.
+o VFS-490:  [hdfs] Make OSGi package imports for hdfs resolution=optional.
+            Removed all scopes from dependency management.
+o VFS-560:  [http] avoid initial HEAD request to root of HttpFileSystem as it 
might be wrong context.
+o VFS-236:  [smb] Allow SMB to be used with no authentication. Thanks to Matt 
Casters.
+o VFS-564:  Make some loggers static. Thanks to Dmitry Konstantinov.
+o VFS-557:  [webdav][test] Create WebDav test directory in target/test. Avoid 
creating core/jackrabbit/tmp.
+            Logfiles of Jackrabbit are preserved when 
-DWebdavProviderTestCase.Debug=true is specified.
+o VFS-558:  Make moveTo() and getParent() work with CacheStrategy.ON_CALL.
+            In case of FTP Provider it would lead otherwise to an 
UnsupportedOperationException.
+o           [sandbox] RACRandomAccessFile is now in 
org.apache.commons.vfs2.util package (so sandbox has only one overlapping 
package).
+o VFS-552:  [sandbox] include vfs-providers.xml in JAR for dynamic 
registration of mime and smb providers.
+o VFS-551:  Javadoc: make it clear that DefaultCryptor is only an obfuscation 
function. Thanks to David Camilo Espitia Manrique.
+o VFS-309:  DefaultFileContent will remove thread data whenever possible to 
avoid leaks.
+o VFS-487:  DefaultFileMonitor detects recreated files. Thanks to Dave Marion.
+o VFS-523:  [HDFS] Make HdfsFileObject.equal use system hashcode/equals 
instead of
+            wrongly comparing file path only. Thanks to Roger Whitcomb.
+o VFS-544:  [Virtual] Allow virtual file systems and virtual file system 
provider
+            to be closed, to avoid memory leak.
+o VFS-142:  Use ThreadLocal.remove() to clean out FileContentThreadData 
objects. Thanks to Ryan Boettcher.
+o VFS-545:  Make DefaultFilesCache remove reference to filesystem when it is 
cleared (closed).
+o VFS-521:  [Ram][Tests] Make RAM provider test pass on Java 8
+            (JDK-8042377, self-suppression not permitted, 
MonitorOutputStream#close()).
+o VFS-338:  [Local][Tests] Avoid IndexOutOfBoundsException when validating 
local file URIs. Thanks to Daniel R..
+o VFS-489:  [tests] ProviderWriteTests#testListener does not fail cleanly. 
Thanks to Bernd Eckenfels.
+o VFS-486:  DefaultFileMonitor sleeps for twice the specified delay when 
checkPerRun > 0. Thanks to Sam Haldane.
+o VFS-482:  Wrong assertion messages in RAM provider test case.
+o VFS-460:  Dependency to commons-compress set as optional.
+o VFS-464:  StaticUserAuthenticator should return only requested 
authentication data.
+o VFS-461:  [FTP/FTPS] ConfigBuilder does not consider system properties for 
the value of SoTimeout and Encoding.
+o VFS-458:  [FTPS] Provider missed functionality and bug fixes already 
available for the FTP provider.
+o VFS-452:  [HTTP] HttpFileObject read/write attributes should reflect 
underlying FileSystem capabilities. Thanks to Jean-Marc Borer.
+o VFS-285:  AbstractFileObject.getChildren() may corrupt its internal state if 
a filename
+            can not be resolved. Thanks to Kirill Safonov.
+o VFS-450:  [HDFS] HDFSFileSystem.resolveFile() does not honor 
CacheStrategy.ON_RESOLVE. Thanks to Dave Marion.
+o VFS-448:  commons-vfs 2.0 JAR has flawed OSGi MANIFEST.MF.
+o VFS-439:  StaticUserAuthenticator usage example wrong. Thanks to pensecit.
+o VFS-437:  [FTP] StackOverFlowError getting the type of a directory with a 
symbolic link to a parent directory with the same name. Thanks to denniszhu, 
danttran, jpowang.
+o VFS-435:  FileSystemConfigBuilder does not use prefix for some system 
property lookups. Thanks to george scott.
+o VFS-434:  FileSystemException should reuse IOException's chained exception.
+o VFS-433:  [WebDAV] Message "vfs.provider.webdav/propfind.error" is not 
defined.
+o VFS-430:  The SoftRefFilesCache class logs clear text password. Thanks to 
antonin.stefanutti.
+o VFS-429:  Remove extra FileSystem ivar in AbstractFileObject subclasses with 
generics.
+o VFS-427:  [HTTP] NPE on HttpFileObject.getContent().getContentInfo(). Thanks 
to awelynant.
+o VFS-406:  [RAM] resize throws ArrayOOBE when shrinking in size. Thanks to 
mp1.
+o VFS-353:  [FTP] Client should call logout before disconnecting. Thanks to 
bergander.
+o VFS-408:  CompressedFileFileObject Exception thrown when container file has 
no extension. Thanks to ani...@yahoo.com.
+o VFS-258:  [SFTP][RAM] Unsafe casting to AbstractFileObject subclasses in 
doRename(). Thanks to mzawirski.
+o VFS-413:  [FTP] No support for FTP servers with non Latin-1 control 
encoding. Thanks to polivenok.
+o VFS-200:  [SFTP] Failure when files are very large.
+o VFS-296:  [FTP] FTP socket timeout setting doesn't work if connect hangs. 
Thanks to andreasp.
+o VFS-410:  [SFTP] SftpFileObject getInputStream(long) reads the whole file 
into memory. Thanks to mstockhammer.
+o VFS-407:  [RAM] Reading a RAM FileSystem file fails because it never returns 
EOF -1. Thanks to mp1.
+o VFS-382:  SFTP getChildren() does not fail when called on a file.
+o VFS-380:  FTP connect.error message used instead of SFTP connect.error 
message.
+o VFS-378:  Tar error message are missing from resource file.
+o VFS-374:  Incorrect lazy initialization of static field 
org.apache.commons.vfs2.util.Messages.resources in 
org.apache.commons.vfs2.util.Messages.findMessage(String)Add FileContent write 
APIs.
+o VFS-355:  The read method of RamFileRandomAccessContent's input stream does 
not return -1 at eof. Thanks to Miroslav Pokorny.
+o VFS-356:  Throw an IOException if an attempt is made to seek to a position 
before the start of the file.
+o VFS-359:  Don't delete a RamFileObject if it is open. Thanks to Miroslav 
Pokorny.
+o VFS-352:  ZipFileSystem now uses an internal Map as a cache for all the 
files in the zip archive.
+o VFS-351:  Chain the SftpException in the FileSystemException. Thanks to John 
Backstrand.
+o VFS-325:  Allow # character in file names. Thanks to Larry Reeve.
+o VFS-335:  Use atomic variables in MonitorInputStream.
+o VFS-364:  Check the href in the response for just a path in addition to a 
full uri.
+
+Changes:
+o VFS-607:  Update Apache Commons Compress from 1.10 to 1.11.
+o VFS-608:  Update Apache Commons Net from 3.4 to 3.5.
+o VFS-530:  [hdfs] Use stable Apache Hadoop 2.6 dependencies. Thanks to Dave 
Marion.
+o VFS-601:  Update Apache Commons Net from 3.3 to 3.4.
+o VFS-602:  Update Apache Commons IO from 2.4 to 2.5.
+o VFS-579:  Update Jsch from 0.1.51 to 0.1.53.
+o VFS-542:  Update Jsch from 0.1.50 to 0.1.51.
+o VFS-578:  Update Apache Commons Compress from 1.9 to 1.10.
+o VFS-541:  Update Apache Commons Compress from 1.6 to 1.9.
+o VFS-540:  Update Apache Commons Logging from 1.1.3 to 1.2.
+o VFS-539:  Update Apache Commons Lang from 3.1 to 3.3.2.
+o VFS-526:  [HDFS][Tests] Support HDFS testing on Windows (but keep profile 
"no-hdfs" enabled on Windows VFS-529).
+o VFS-453:  [HTTP][WEBDAV] Add file system options for connect and socket 
timeout. Thanks to Jiri Syrovy.
+o VFS-167:  [FTP] Allow Proxy support to file system options. Thanks to Jimmy 
Praet.
+o VFS-520:  Make JavaDoc compatible with Java 8 tool.
+o VFS-518:  Documentation of FileSystemOptions should be more helpful. Thanks 
to Roland Illig.
+o VFS-500:  VFSClassLoader.findResources missing. Thanks to Bernd Eckenfels.
+o VFS-514:  [tests] PermissionsTests leaves unclean test directory. Thanks to 
Bernd Eckenfels.
+o VFS-501:  Hide passwords from log/console output. Thanks to Yves Schumann.
+o VFS-496:  Resource translation issues. Thanks to Bernd Eckenfels.
+o VFS-494:  [SFTP] No support for SFTP servers with non Latin-1 file name 
encoding. Thanks to Allen Xudong Cheng.
+o VFS-368:  [SFTP] Documentation implies that "userDirIsRoot" defaults to 
true. Thanks to Brendan Long.
+o VFS-265:  [FTP] Set user dir as root dir by default. Thanks to Scott 
Bjerstedt.
+o VFS-484:  [SFTP] Update Jsch to 0.1.50 from 0.1.49.
+o VFS-507:  Update to Apache Commons Collection 4.1 from 3.2.1 and use 
generics.
+o VFS-476:  Update Apache Commons Logging to 1.1.3 from 1.1.2.
+o VFS-475:  Update Apache Commons Net to 3.3 from 3.2.
+o VFS-506:  [Tar][Bzip2] Update Apache Commons Compress to 1.6 from 1.5.
+o VFS-471:  Update to Apache Commons Compress 1.5.
+o VFS-283:  [SFTP] SFTP provider did not support passphrase-protected keys nor 
the exchange of a public key with
+            a requesting SFTP server. To support such triples (private 
key/passphrase/public key) instead of private
+            keys only, a new structure EntityInfo has been created. 
SftpFileSystemConfigBuilder has now the new
+            getter and setter methods getIdentityInfo and setIdentity info 
which replace the now deprecated methods
+            getIdentities and setIdentities.
+o VFS-463:  FileSytemConfigBuilder supports system properties for the value of 
enum-based configuration entries.
+o VFS-462:  [FTPS] Deprecate FtpsFileSystemConfigBuilder.setFtpsType and 
FtpsFileSystemConfigBuilder.getFtpsType
+            in favor of FtpsFileSystemConfigBuilder.setFtpsMode and 
FtpsFileSystemConfigBuilder.getFtpsMode which
+            use new enum FtpsMode instead.
+o VFS-459:  [FTP/FTPS] Sent commands and the received answer is logged at 
debug level.
+o VFS-457:  Update test dependencies: sshd-core version 0.7.0 to 0.8.0; 
mina-core 2.0.4 to 2.0.7; junit 4.11 to 4.12; slf4j-* 1.5.5 to 1.5.11
+o VFS-456:  Use org.bouncycastel:bcprov-jdk16 instead of 
org.bouncycastle:bcprof-jdk15on since Java 1.6 is required.
+o VFS-415:  Update VFS requirement to Java 1.6.
+o VFS-418:  Update to Apache Commons Compress 1.4.1.
+o VFS-321:  AbstractFileObject sometimes uses getFileSystem() and sometimes 
references "fs" field directly. Thanks to sebb.
+o VFS-327:  UriParser.canonicalizePath possible NPE for filenameParser. Thanks 
to sebb.
+o VFS-416:  [SFTP] Update Jsch to version 0.1.49 from 0.1.47.
+o VFS-395:  [POM] Remove maven-scm-* dependencies.
+o VFS-411:  [SFTP] Update Jsch to version 0.1.47 from 0.1.46.
+o VFS-409:  Update Apache Commons Compress to 1.4 from 1.3.
+o VFS-404:  [FTP][FTPS] Update Apache Commons Net to 3.1 from 3.0.1.
+o VFS-402:  [WebDAV] Update Apache Jackrabbit 1.5.2 to 1.6.5.
+o VFS-401:  Update JSch to 0.1.46 from 0.1.45 for the SFTP provider.
+o VFS-392:  Build tests WebDAV file system with an embedded WebDAV server 
(Apache Jackrabbit).
+o VFS-391:  Build tests URL HTTP file system with an embedded HTTP server 
(Apache HttpComponent Core).
+o VFS-390:  Use variable argument list in 
org.apache.commons.vfs2.util.Messages instead of Object[].
+o VFS-389:  Use variable argument lists in FileSystemException instead of 
Object[]s.
+o VFS-388:  Build tests SFTP file system with an embedded SFTP server (Apache 
MINA).
+o VFS-387:  Build tests FTP file system with an embedded FTP server (Apache 
MINA).
+o VFS-386:  Build tests HTTP file system with an embedded HTTP server (Apache 
HttpComponent Core).
+o VFS-385:  Add HTTP status code to HTTP file provider exception messages when 
available.
+o VFS-384:  Update Apache Commons Net to 3.0.1 from 2.2 for FTP and SFTP 
providers.
+o VFS-383:  Update JSch to 0.1.45 from 0.1.42 for the SFTP provider.
+o VFS-379:  Replace custom BZIP2 code with Apache Commons Compress 1.3.
+o VFS-377:  Replace custom TAR code with Apache Commons Compress 1.3.
+o VFS-375:  Upgrade to Apache Commons Compress 1.3 from 1.2.
+o VFS-366:  Can't sort a List of FileObject's, FileObject to implement 
Comparable<FileObject>.
+o VFS-341:  Enable logging of JSch using the Commons Logging Log object in 
SftpClientFactory. Thanks to Rajika Kumarasiri.
+o VFS-361:  Upgrade commons collections version to 3.2.1.
+
+Removed:
+o VFS-469:  Remove unused dependency to javax.jcr:jcr.
+
+Historical list of changes: 
http://commons.apache.org/proper/commons-vfs/changes-report.html
+
+For complete information on Apache Commons VFS, including instructions on how 
to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons VFS 
website:
+
+http://commons.apache.org/proper/commons-vfs/

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.asc
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.asc 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.asc 
Thu May 19 01:53:22 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABAgAGBQJXM+kYAAoJELfVzUVGd9ZsRAcP/AuKn44NITxetz22QZtCsjVi
+/iLnAtbFJTf01K8Ovkb/APfIO6hywWMffIreM8N6/f+sa8Ml3zcluPg0V8k3L9tQ
+HBbSUBwChk0x4mMRFNnZ8LpPSNEoW7DB7S93h/a0DI61o3Ivlt+yO329Y98GeOLM
+dopJdcmXeUPlfDKIfcTo68eN1mai8MOa53UR7JMOvN/FkGRagoA8JDFb5kBE4OZF
+q7yq/o1P7gtk4u9qjJ23hDEZwxgMHdtZbnux9kFQQJB1aDuqPSolPECF8Ohq4WQ2
+n+h6VwllUi6koBMhLejlN3ZlI0VChRoGYDlXztAy+i8LRlaWfSbHsbak2CbN8kr1
+GMgZQh2d38lVYl4LzoBflhkw2RBF6XdAwhdAfb+Yg9bxL0wwFyzFbXKzoklDbL0b
+gwTG8nw+yPnKlMH0qaZVriTmf4aUV8sEJQ11OoYdJi3Ki39zuAP2quKr4Xy530Ne
+P8J9RFnRBgaVhVzNeQAwPkdyzHPFSvqsMbeJs406GpxLnkCNSKoh+6qvFlkW/sYC
+h5lCgoCmv8YTalUkCDEQ+kf04ud5fTUQCU/W1W8YJ92BDzYdgu1pDIYzdcQESIu6
+SnVfYI1Gv1SsLjEjxwqOnugzTI9eZveyG8uY265MRiq36lEQGsG6j06kPLG4yujH
+AIcQlCkHzu321by/JJ1s
+=c5Uc
+-----END PGP SIGNATURE-----

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.md5
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.md5 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.md5 
Thu May 19 01:53:22 2016
@@ -0,0 +1 @@
+8cc35a3169e1faee727c5af94c7dd904  commons-vfs-distribution-2.1-bin.tar.gz

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.sha1
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.sha1 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.tar.gz.sha1 
Thu May 19 01:53:22 2016
@@ -0,0 +1 @@
+72b7557c4e8b1789b8aa0a9c1e0cb2c9daecec30  
commons-vfs-distribution-2.1-bin.tar.gz

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.asc
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.asc 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.asc Thu 
May 19 01:53:22 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABAgAGBQJXM+kYAAoJELfVzUVGd9ZsldIP/jrEXvqekxvzfgrAD27kiC4n
+YHKbvmAZiC3cSeCwlb4qbX+glGi+Z9KtBf3+/2uKH5KmROTkxDsOaIv2wOR9Jjbh
+kJmNqwMSyJjt8NRFIi+Cv6EXtNA8y6dMAwAyV1B3poQbOlLuezkNA32GRuhZdcdS
+XjAG9DYV+1qbrtxatnL6EIqEf8fresufbhBUVVuyQ3DJJM9t+sHG/pEWw9sgc+TU
+I30ftRItI2Zinpx5M72klW2cbJPNlUDYVPjUPwhshT4fC6JhCuf2f8T6IVMPqygQ
+s6rMRZGYMqZaOdj4xZeoYRf75KZGOlmsBRWtro7Q3VkjsIu1MPjc7MovYNAjD89D
+mOXHLJkW4Mn2+b+i81YsKROCyLLL0LQobYvMlvGFFb1t8rfC8s4oUZ/UwIBKTwBj
+HJZA3klAOn4zXXwF2kBT/KOsjW6/U9Tf0jMtflUlnB7jZpcdpa6skRSVtUmH6p7D
+Sjd8EbGVzwxhe6gXZnbMWWdIT9lniYKij3pJmEiiGy088LMeq9x7Jh/mGBEmCyoK
+SV1Dr/LuFK7G2L3ODDnetg0nLyJ7BHioimFVlkNmyBX467goBXVCShbk/q9qlLYN
+MImqZ3gW0KGVcwPsYtJzp8d9TBZYnw0tsmcKk+LZTnS3050BGXmr6nRx6gMZ3VII
+jyssioo9UFKdftCN0ajy
+=0kEI
+-----END PGP SIGNATURE-----

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.md5
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.md5 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.md5 Thu 
May 19 01:53:22 2016
@@ -0,0 +1 @@
+b512a45c63d824eef826f174fd7a9245  commons-vfs-distribution-2.1-bin.zip

Added: release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.sha1
==============================================================================
--- release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.sha1 
(added)
+++ release/commons/vfs/binaries/commons-vfs-distribution-2.1-bin.zip.sha1 Thu 
May 19 01:53:22 2016
@@ -0,0 +1 @@
+886cb5a430da58b3a68e2abf297b6f735d3ffaf0  commons-vfs-distribution-2.1-bin.zip

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.asc
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.asc 
(added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.asc Thu 
May 19 01:53:22 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABAgAGBQJXM+kYAAoJELfVzUVGd9ZswPoP/0xy9sEIaScS26A5BJOhBdQ3
+gO/RGOzaL2Qdx0tNDmvCLpPwLkkfWoVg3PxyBTTFF+iCHzkKK+qK7EwxpBmddozV
+Bk1TqtdBrysu78ksgUJOb4ABehV30wcekVR7/KkMsXWFDkzzvzol9unvt/3VLZgR
+zZnqQEMUSCkbo4XT0xSD8A8N2f8NMsX4HRJXRC8yDqV6hUFpnoNRe0+ItrRbz14O
+6bBqovU9i72i5il+vI2v1RQubdN4VfeszYGfAJqAfC8n9Cet6KHSmsVvScGIop9v
+INyp4tkOlsYKOKehvbaO/XR/NZRyzBy3OCLvXyKdAM4sGgyKHd+tQNl9Y6SuoV/n
+8wAP4eFhWvxc4ABLJ6WTuzoCDkWpH9/Oct1MRJKeEFukC9zz6xs1+zWer1sex0FW
+3ZTY6mnoMEdsOWblAub1WV/+V1oHhLqzREMxqVCQ136CBgMwjfxc5dt4gYwukKzV
+jpLJdz6x7xepYRnflbQ/8A3sAcSPnWnR/JVyLwZe9uPYq7PBRcadQZx9mee3qmk/
+xn2Uf42+nMW79DRraTGwOttmgvsk1mkwbIsnrRuAonO2IVx7Ee9ynH/2BTP8M1t4
+5LiY6kDq3tKW7/6qppCGaGQ4Rc4mURxGG3Mset9i9OexHLA77zcAOLT2onx9x4tE
+wFNunhyybXwQ5ZynR0OH
+=G7xg
+-----END PGP SIGNATURE-----

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.md5
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.md5 
(added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.md5 Thu 
May 19 01:53:22 2016
@@ -0,0 +1 @@
+a182ac642874e85fbc7d1086f7663482  commons-vfs-distribution-2.1-src.tar.gz

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.sha1
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.sha1 
(added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.tar.gz.sha1 Thu 
May 19 01:53:22 2016
@@ -0,0 +1 @@
+e42ac2053deb314277213e43f6f1d6b43eff3de9  
commons-vfs-distribution-2.1-src.tar.gz

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip
==============================================================================
Binary file - no diff available.

Propchange: release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.asc
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.asc (added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.asc Thu May 
19 01:53:22 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABAgAGBQJXM+kYAAoJELfVzUVGd9Zs4NAP/3op59CZ6mXgbe3Adfn74IQP
+a99AmyII/XqVsRtOvNYyxP1tb+lyLSj6QdYkUppjRXy6TwdSepoegl5h+777ee1G
+8Cc0wCK/yXfnkOj3KlprEtpV+6qd+wRgsiFhCfxRCKaTyI1TNqydEcgXJZodMYc9
+4TdVBXnVl0HBDr7doRAYfZKPhfSV+EjYc9TJ+LBJOjJLTZa+qlQUoYvRTCCn+RbK
+8b8L8GUncdWV0mW3G9YgrcQ3eIdjbxPXpPuVzrMQGweYBg0AKpz2EnClBr8F0CRf
+NpQJ8kmBSYz5X5q9hHVbBA41jANZfwZUlXTtiyCE6l6BQhp1BUhwym2zFMirV55R
+o6TjMjPQ0QNbBxyrt4zwH61chN5WpsPTyf9U6IBr2/Nknr1g9lPqDcxEgYjT6IBR
+jucPz4JQPKw6wuOYNJMSgk/OAa19gGuLkNz/9kZpnURUA2kZXy4PWOVqrolShuaC
++ZpkJcuH1pJQ+atrT+CPqDXTCEH5JmdcOWbCAH9rnhR1j2rgUJ5CMz07LVetAQx1
+Yqf4P4y8TgxIQ0PwPMqYuumTgAcY0Ajo9aitxdbylCsYGKEoS1liDmu4Sds+Ula+
+/phlXJmxxIN6bZGdnU7ld8nS26eKpXKelikB9WEE5Eq9WsFZm77cO2E2gw3atYRq
+dcZdq9D35OW7FqRNxXyy
+=XYEL
+-----END PGP SIGNATURE-----

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.md5
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.md5 (added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.md5 Thu May 
19 01:53:22 2016
@@ -0,0 +1 @@
+29645a0ad091c15b2cf76b619c33069f  commons-vfs-distribution-2.1-src.zip

Added: release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.sha1
==============================================================================
--- release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.sha1 (added)
+++ release/commons/vfs/source/commons-vfs-distribution-2.1-src.zip.sha1 Thu 
May 19 01:53:22 2016
@@ -0,0 +1 @@
+5824cf4d802865b5e93ff62c90affa58df6c4384  commons-vfs-distribution-2.1-src.zip


Reply via email to