[commons-vfs] branch master updated: Ensure -bin is used for binary builds

2019-08-02 Thread sebb
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
 new 562406f  Ensure -bin is used for binary builds
562406f is described below

commit 562406f81592fe76bda37c1fafa3bde3a3c680cd
Author: Sebb 
AuthorDate: Fri Aug 2 17:43:08 2019 +0100

Ensure -bin is used for binary builds
---
 pom.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index bea397e..42c3c3f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -166,13 +166,11 @@
 RC1
 
commons-vfs-${commons.release.version}
 (requires Java 8)
- 
 
 
 
 ${basedir}



[commons-io] branch master updated: Change part of "Fix "unexpected heading" Javadoc errors on Java 13+." so that it also works version before Java 13.

2019-08-02 Thread pascalschumacher
This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
 new 1de4a96  Change part of "Fix "unexpected heading" Javadoc errors on 
Java 13+." so that it also works version before Java 13.
1de4a96 is described below

commit 1de4a966ce72393f86b409725371da074697ab8a
Author: pascalschumacher 
AuthorDate: Fri Aug 2 16:57:09 2019 +0200

Change part of "Fix "unexpected heading" Javadoc errors on Java 13+." so 
that it also works version before Java 13.
---
 src/main/java/org/apache/commons/io/FileUtils.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java 
b/src/main/java/org/apache/commons/io/FileUtils.java
index cc804ca..6e175e6 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1309,13 +1309,13 @@ public class FileUtils {
  * it is not guaranteed that those operations will succeed.
  * If the modification operation fails, no indication is provided.
  * 
- * Example: Copy directories only
+ * Example: Copy directories only
  * 
  *  // only copy the directory structure
  *  FileUtils.copyDirectory(srcDir, destDir, 
DirectoryFileFilter.DIRECTORY);
  *  
  *
- * Example: Copy directories and txt files
+ * Example: Copy directories and txt files
  * 
  *  // Create a filter for ".txt" files
  *  IOFileFilter txtSuffixFilter = 
FileFilterUtils.suffixFileFilter(".txt");
@@ -1361,13 +1361,13 @@ public class FileUtils {
  * not guaranteed that those operations will succeed.
  * If the modification operation fails, no indication is provided.
  * 
- * Example: Copy directories only
+ * Example: Copy directories only
  * 
  *  // only copy the directory structure
  *  FileUtils.copyDirectory(srcDir, destDir, 
DirectoryFileFilter.DIRECTORY, false);
  *  
  *
- * Example: Copy directories and txt files
+ * Example: Copy directories and txt files
  * 
  *  // Create a filter for ".txt" files
  *  IOFileFilter txtSuffixFilter = 
FileFilterUtils.suffixFileFilter(".txt");



[commons-io] branch master updated: Fix "unexpected heading" Javadoc errors on Java 13+.

2019-08-02 Thread pascalschumacher
This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
 new 27fbd9e  Fix "unexpected heading" Javadoc errors on Java 13+.
27fbd9e is described below

commit 27fbd9e3a383ea3899714e743c34742607b0b73a
Author: Pascal Schumacher 
AuthorDate: Fri Aug 2 16:40:42 2019 +0200

Fix "unexpected heading" Javadoc errors on Java 13+.
---
 src/main/java/org/apache/commons/io/DirectoryWalker.java  | 10 +-
 src/main/java/org/apache/commons/io/FileUtils.java|  8 
 src/main/java/org/apache/commons/io/comparator/package.html   |  6 +++---
 src/main/java/org/apache/commons/io/input/BOMInputStream.java |  6 +++---
 src/main/java/org/apache/commons/io/monitor/FileEntry.java|  2 +-
 5 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/DirectoryWalker.java 
b/src/main/java/org/apache/commons/io/DirectoryWalker.java
index b04a204..24f2885 100644
--- a/src/main/java/org/apache/commons/io/DirectoryWalker.java
+++ b/src/main/java/org/apache/commons/io/DirectoryWalker.java
@@ -46,7 +46,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *  behaviour.
  *   
  *
- * 1. Example Implementation
+ * 1. Example Implementation
  *
  * There are many possible extensions, for example, to delete all
  * files and '.svn' directories, and return a list of deleted files:
@@ -82,7 +82,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *  }
  * 
  *
- * 2. Filter Example
+ * 2. Filter Example
  *
  * 
  * Choosing which directories and files to process can be a key aspect
@@ -157,7 +157,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  * option for filtering.
  * 
  *
- * 3. Cancellation
+ * 3. Cancellation
  *
  * 
  * The DirectoryWalker contains some of the logic required for cancel 
processing.
@@ -195,7 +195,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  * scenarios.
  * 
  *
- * 3.1 External / Multi-threaded
+ * 3.1 External / Multi-threaded
  *
  * 
  * This example provides a public cancel() method that can be
@@ -228,7 +228,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *  }
  * 
  *
- * 3.2 Internal
+ * 3.2 Internal
  *
  * 
  * This shows an example of how internal cancellation processing could be 
implemented.
diff --git a/src/main/java/org/apache/commons/io/FileUtils.java 
b/src/main/java/org/apache/commons/io/FileUtils.java
index efc1a64..cc804ca 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1309,13 +1309,13 @@ public class FileUtils {
  * it is not guaranteed that those operations will succeed.
  * If the modification operation fails, no indication is provided.
  * 
- * Example: Copy directories only
+ * Example: Copy directories only
  * 
  *  // only copy the directory structure
  *  FileUtils.copyDirectory(srcDir, destDir, 
DirectoryFileFilter.DIRECTORY);
  *  
  *
- * Example: Copy directories and txt files
+ * Example: Copy directories and txt files
  * 
  *  // Create a filter for ".txt" files
  *  IOFileFilter txtSuffixFilter = 
FileFilterUtils.suffixFileFilter(".txt");
@@ -1361,13 +1361,13 @@ public class FileUtils {
  * not guaranteed that those operations will succeed.
  * If the modification operation fails, no indication is provided.
  * 
- * Example: Copy directories only
+ * Example: Copy directories only
  * 
  *  // only copy the directory structure
  *  FileUtils.copyDirectory(srcDir, destDir, 
DirectoryFileFilter.DIRECTORY, false);
  *  
  *
- * Example: Copy directories and txt files
+ * Example: Copy directories and txt files
  * 
  *  // Create a filter for ".txt" files
  *  IOFileFilter txtSuffixFilter = 
FileFilterUtils.suffixFileFilter(".txt");
diff --git a/src/main/java/org/apache/commons/io/comparator/package.html 
b/src/main/java/org/apache/commons/io/comparator/package.html
index fa66bb0..bd2d239 100644
--- a/src/main/java/org/apache/commons/io/comparator/package.html
+++ b/src/main/java/org/apache/commons/io/comparator/package.html
@@ -20,7 +20,7 @@ limitations under the License.
 This package provides various {@link java.util.Comparator} implementations
 for {@link java.io.File}s.
 
-Sorting
+Sorting
 
   All the compartors include convenience utility 
sort(File...) and
   sort(List) methods.
@@ -39,7 +39,7 @@ for {@link java.io.File}s.
   File[] files = NameFileComparator.NAME_COMPARATOR.sort(dir.listFiles());
 
 
-Composite Comparator
+Composite Comparator
 
   The CompositeFileComparator can 
be used
   to compare (and sort lists or arrays of files) by combining a number other 
comparators.
@@ -57,7 +57,7 @@ for {@link java.io.File}s.
   

[commons-collections] branch master updated: More fixups to pom; rebuild download page

2019-08-02 Thread sebb
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new f823985  More fixups to pom; rebuild download page
f823985 is described below

commit f823985339e59ff09f604a8c0b6dbe9c8942d0bd
Author: Sebb 
AuthorDate: Fri Aug 2 15:39:21 2019 +0100

More fixups to pom; rebuild download page
---
 pom.xml| 4 
 src/site/xdoc/download_collections.xml | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5a0003e..37b8157 100644
--- a/pom.xml
+++ b/pom.xml
@@ -508,6 +508,10 @@
 (Requires Java 1.3 or 
later)
 
 
commons-collections-${commons.release.4.version}
+
+sha256
+
+-bin
 
 COLLECTIONS
 12310465
diff --git a/src/site/xdoc/download_collections.xml 
b/src/site/xdoc/download_collections.xml
index e878961..420c3b9 100644
--- a/src/site/xdoc/download_collections.xml
+++ b/src/site/xdoc/download_collections.xml
@@ -222,13 +222,13 @@ limitations under the License.
 
   
   commons-collections-3.2.2-src.tar.gz
-  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.tar.gz.sha256;>sha256
-  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.tar.gz.asc;>pgp
+  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.tar.gz.sha256;>sha256
+  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.tar.gz.asc;>pgp
   
   
   commons-collections-3.2.2-src.zip
   https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.zip.sha256;>sha256
-  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2src.zip.asc;>pgp
+  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.zip.asc;>pgp
   
 
   



[commons-collections] branch master updated: Fix the source of the naming problem for 3.2.2

2019-08-02 Thread sebb
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new c9c0008  Fix the source of the naming problem for 3.2.2
c9c0008 is described below

commit c9c0008a8ad0975cab0629526019a97ee8386bbc
Author: Sebb 
AuthorDate: Fri Aug 2 15:23:46 2019 +0100

Fix the source of the naming problem for 3.2.2
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c3a56ba..5a0003e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -507,7 +507,7 @@
 3.2.2
 (Requires Java 1.3 or 
later)
 
-
commons-collections-${commons.release.3.version}
+
commons-collections-${commons.release.4.version}
 
 COLLECTIONS
 12310465



[commons-collections] branch master updated: Fix version.

2019-08-02 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new a179656  Fix version.
a179656 is described below

commit a17965688bffad008640d19a28215e2b5a28d15a
Author: Gary Gregory 
AuthorDate: Fri Aug 2 09:55:38 2019 -0400

Fix version.
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f2c634a..c3a56ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   
   4.0.0
   commons-collections4
-  4.4
+  4.5-SNAPSHOT
   Apache Commons Collections
 
   2001



[commons-collections] branch master updated: Fix download page for 3.2.2.

2019-08-02 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new 3927b6c  Fix download page for 3.2.2.
3927b6c is described below

commit 3927b6ca1e4ce7db5df42c232856836169c4fcc5
Author: Gary Gregory 
AuthorDate: Fri Aug 2 09:54:52 2019 -0400

Fix download page for 3.2.2.
---
 pom.xml|  2 +-
 src/site/xdoc/download_collections.xml | 22 +++---
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index c3a56ba..f2c634a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   
   4.0.0
   commons-collections4
-  4.5-SNAPSHOT
+  4.4
   Apache Commons Collections
 
   2001
diff --git a/src/site/xdoc/download_collections.xml 
b/src/site/xdoc/download_collections.xml
index e7d58c5..e878961 100644
--- a/src/site/xdoc/download_collections.xml
+++ b/src/site/xdoc/download_collections.xml
@@ -207,28 +207,28 @@ limitations under the License.
   
 
   
-  commons-collections-4.1${commons.release.4.binary.suffix}.tar.gz
-  https://www.apache.org/dist/commons/collections/binaries/commons-collections-4.1${commons.release.4.binary.suffix}.tar.gz.sha512;>sha512
-  https://www.apache.org/dist/commons/collections/binaries/commons-collections-4.1${commons.release.4.binary.suffix}.tar.gz.asc;>pgp
+  commons-collections-3.2.2-bin.tar.gz
+  https://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.tar.gz.sha256;>sha256
+  https://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.tar.gz.asc;>pgp
   
   
-  commons-collections-4.1${commons.release.4.binary.suffix}.zip
-  https://www.apache.org/dist/commons/collections/binaries/commons-collections-4.1${commons.release.4.binary.suffix}.zip.sha512;>sha512
-  https://www.apache.org/dist/commons/collections/binaries/commons-collections-4.1${commons.release.4.binary.suffix}.zip.asc;>pgp
+  commons-collections-3.2.2-bin.zip
+  https://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.zip.sha256;>sha256
+  https://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.zip.asc;>pgp
   
 
   
   
 
   
-  commons-collections-4.1-src.tar.gz
-  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.tar.gz.sha512;>sha512
+  commons-collections-3.2.2-src.tar.gz
+  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.tar.gz.sha256;>sha256
   https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.tar.gz.asc;>pgp
   
   
-  commons-collections-4.1-src.zip
-  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.zip.sha512;>sha512
-  https://www.apache.org/dist/commons/collections/source/commons-collections-4.1-src.zip.asc;>pgp
+  commons-collections-3.2.2-src.zip
+  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.zip.sha256;>sha256
+  https://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2src.zip.asc;>pgp