commons-dbcp git commit: Sort members in AB order so it's easier to find stuff.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master 11dca5f87 -> f05518d99


Sort members in AB order so it's easier to find stuff.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/f05518d9
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/f05518d9
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/f05518d9

Branch: refs/heads/master
Commit: f05518d99227ade0b7928592c28a67ff1f0b3bf3
Parents: 11dca5f
Author: Gary Gregory 
Authored: Sat Jun 16 17:39:08 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:39:08 2018 -0600

--
 .../commons/dbcp2/DelegatingStatement.java  | 538 +--
 1 file changed, 269 insertions(+), 269 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f05518d9/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
--
diff --git a/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java 
b/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
index 76557d3..00f440f 100644
--- a/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
+++ b/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
@@ -42,6 +42,8 @@ public class DelegatingStatement extends AbandonedTrace 
implements Statement {
 /** The connection that created me. **/
 private DelegatingConnection connection;
 
+private boolean closed = false;
+
 /**
  * Create a wrapper for the Statement which traces this Statement to the 
Connection which created it and the code
  * which created it.
@@ -58,66 +60,60 @@ public class DelegatingStatement extends AbandonedTrace 
implements Statement {
 }
 
 /**
- * Returns my underlying {@link Statement}.
  *
- * @return my underlying {@link Statement}.
- * @see #getInnermostDelegate
+ * @throws SQLException
+ * thrown by the delegating statement.
+ * @since 2.4.0 made public, was protected in 2.3.0.
  */
-public Statement getDelegate() {
-return statement;
+public void activate() throws SQLException {
+if (statement instanceof DelegatingStatement) {
+((DelegatingStatement) statement).activate();
+}
 }
 
-/**
- * If my underlying {@link Statement} is not a {@code 
DelegatingStatement}, returns it, otherwise recursively
- * invokes this method on my delegate.
- * 
- * Hence this method will return the first delegate that is not a {@code 
DelegatingStatement} or {@code null} when
- * no non-{@code DelegatingStatement} delegate can be found by traversing 
this chain.
- * 
- * 
- * This method is useful when you may have nested {@code 
DelegatingStatement}s, and you want to make sure to obtain
- * a "genuine" {@link Statement}.
- * 
- *
- * @return The innermost delegate.
- *
- * @see #getDelegate
- */
-@SuppressWarnings("resource")
-public Statement getInnermostDelegate() {
-Statement s = statement;
-while (s != null && s instanceof DelegatingStatement) {
-s = ((DelegatingStatement) s).getDelegate();
-if (this == s) {
-return null;
-}
+@Override
+public void addBatch(final String sql) throws SQLException {
+checkOpen();
+try {
+statement.addBatch(sql);
+} catch (final SQLException e) {
+handleException(e);
 }
-return s;
 }
 
-/**
- * Sets my delegate.
- *
- * @param statement
- *my delegate.
- */
-public void setDelegate(final Statement statement) {
-this.statement = statement;
+@Override
+public void cancel() throws SQLException {
+checkOpen();
+try {
+statement.cancel();
+} catch (final SQLException e) {
+handleException(e);
+}
 }
 
-private boolean closed = false;
-
-protected boolean isClosedInternal() {
-return closed;
+protected void checkOpen() throws SQLException {
+if (isClosed()) {
+throw new SQLException(this.getClass().getName() + " with address: 
\"" + this.toString() + "\" is closed.");
+}
 }
 
-protected void setClosedInternal(final boolean closed) {
-this.closed = closed;
+@Override
+public void clearBatch() throws SQLException {
+checkOpen();
+try {
+statement.clearBatch();
+} catch (final SQLException e) {
+handleException(e);
+}
 }
 
-protected void checkOpen() throws SQLException {
-if (isClosed()) {
-throw new SQLException(this.getClass().getName() + " with address: 

commons-dbcp git commit: Suppress compiler warning.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master f4bc7cb02 -> 11dca5f87


Suppress compiler warning.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/11dca5f8
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/11dca5f8
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/11dca5f8

Branch: refs/heads/master
Commit: 11dca5f8746e7b7d43cd62635497946d309fcb60
Parents: f4bc7cb
Author: Gary Gregory 
Authored: Sat Jun 16 17:38:32 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:38:32 2018 -0600

--
 src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/11dca5f8/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
--
diff --git a/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java 
b/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
index 7cce5e2..76557d3 100644
--- a/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
+++ b/src/main/java/org/apache/commons/dbcp2/DelegatingStatement.java
@@ -83,6 +83,7 @@ public class DelegatingStatement extends AbandonedTrace 
implements Statement {
  *
  * @see #getDelegate
  */
+@SuppressWarnings("resource")
 public Statement getInnermostDelegate() {
 Statement s = statement;
 while (s != null && s instanceof DelegatingStatement) {



commons-dbcp git commit: [DBCP-506] Support JDBC 4.2.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master e45c8fbc3 -> f4bc7cb02


[DBCP-506] Support JDBC 4.2.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/f4bc7cb0
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/f4bc7cb0
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/f4bc7cb0

Branch: refs/heads/master
Commit: f4bc7cb026b668257dcd5b083282fc6c2f70f2e9
Parents: e45c8fb
Author: Gary Gregory 
Authored: Sat Jun 16 17:36:55 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:36:55 2018 -0600

--
 .../dbcp2/DelegatingDatabaseMetaData.java   | 34 +---
 1 file changed, 30 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f4bc7cb0/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
--
diff --git 
a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java 
b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
index d345371..3423979 100644
--- a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
+++ b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
@@ -588,6 +588,19 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
+/**
+ * @since 2.5.0
+ */
+@Override
+public long getMaxLogicalLobSize() throws SQLException {
+try {
+return databaseMetaData.getMaxLogicalLobSize();
+} catch (final SQLException e) {
+handleException(e);
+return 0;
+}
+}
+
 @Override
 public int getMaxProcedureNameLength() throws SQLException {
 try {
@@ -1650,6 +1663,19 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
+/**
+ * @since 2.5.0
+ */
+@Override
+public boolean supportsRefCursors() throws SQLException {
+try {
+return databaseMetaData.supportsRefCursors();
+} catch (final SQLException e) {
+handleException(e);
+return false;
+}
+}
+
 @Override
 public boolean supportsResultSetConcurrency(final int type, final int 
concurrency) throws SQLException {
 try {
@@ -1780,6 +1806,8 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
+/* JDBC_4_ANT_KEY_BEGIN */
+
 @Override
 public boolean supportsSubqueriesInComparisons() throws SQLException {
 try {
@@ -1800,8 +1828,6 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
-/* JDBC_4_ANT_KEY_BEGIN */
-
 @Override
 public boolean supportsSubqueriesInIns() throws SQLException {
 try {
@@ -1872,6 +1898,8 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
+/* JDBC_4_ANT_KEY_END */
+
 @Override
 public  T unwrap(final Class iface) throws SQLException {
 if (iface.isAssignableFrom(getClass())) {
@@ -1893,8 +1921,6 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 }
 
-/* JDBC_4_ANT_KEY_END */
-
 @Override
 public boolean usesLocalFilePerTable() throws SQLException {
 try {



commons-dbcp git commit: Sort members in AB order so it's easier to find stuff.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master f4cdc188e -> e45c8fbc3


Sort members in AB order so it's easier to find stuff.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/e45c8fbc
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/e45c8fbc
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/e45c8fbc

Branch: refs/heads/master
Commit: e45c8fbc3e119e5044bd0143ba253380ec45ecbf
Parents: f4cdc18
Author: Gary Gregory 
Authored: Sat Jun 16 17:32:01 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:32:01 2018 -0600

--
 .../dbcp2/DelegatingDatabaseMetaData.java   | 390 +--
 1 file changed, 195 insertions(+), 195 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/e45c8fbc/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
--
diff --git 
a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java 
b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
index 4a36cb9..d345371 100644
--- a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
+++ b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java
@@ -56,48 +56,6 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 this.databaseMetaData = databaseMetaData;
 }
 
-/**
- * Gets the underlying database meta data.
- *
- * @return The underlying database meta data.
- */
-public DatabaseMetaData getDelegate() {
-return databaseMetaData;
-}
-
-/**
- * If my underlying {@link ResultSet} is not a {@code 
DelegatingResultSet}, returns it, otherwise recursively
- * invokes this method on my delegate.
- * 
- * Hence this method will return the first delegate that is not a {@code 
DelegatingResultSet}, or {@code null} when
- * no non-{@code DelegatingResultSet} delegate can be found by traversing 
this chain.
- * 
- * 
- * This method is useful when you may have nested {@code 
DelegatingResultSet}s, and you want to make sure to obtain
- * a "genuine" {@link ResultSet}.
- * 
- *
- * @return the innermost database meta data.
- */
-public DatabaseMetaData getInnermostDelegate() {
-DatabaseMetaData m = databaseMetaData;
-while (m != null && m instanceof DelegatingDatabaseMetaData) {
-m = ((DelegatingDatabaseMetaData) m).getDelegate();
-if (this == m) {
-return null;
-}
-}
-return m;
-}
-
-protected void handleException(final SQLException e) throws SQLException {
-if (connection != null) {
-connection.handleException(e);
-} else {
-throw e;
-}
-}
-
 @Override
 public boolean allProceduresAreCallable() throws SQLException {
 try {
@@ -119,6 +77,16 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 
 @Override
+public boolean autoCommitFailureClosesAllResultSets() throws SQLException {
+try {
+return databaseMetaData.autoCommitFailureClosesAllResultSets();
+} catch (final SQLException e) {
+handleException(e);
+return false;
+}
+}
+
+@Override
 public boolean dataDefinitionCausesTransactionCommit() throws SQLException 
{
 try {
 return databaseMetaData.dataDefinitionCausesTransactionCommit();
@@ -159,6 +127,17 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 
 @Override
+public boolean generatedKeyAlwaysReturned() throws SQLException {
+connection.checkOpen();
+try {
+return databaseMetaData.generatedKeyAlwaysReturned();
+} catch (final SQLException e) {
+handleException(e);
+return false;
+}
+}
+
+@Override
 public ResultSet getAttributes(final String catalog, final String 
schemaPattern, final String typeNamePattern,
 final String attributeNamePattern) throws SQLException {
 connection.checkOpen();
@@ -185,6 +164,17 @@ public class DelegatingDatabaseMetaData implements 
DatabaseMetaData {
 }
 
 @Override
+public ResultSet getCatalogs() throws SQLException {
+connection.checkOpen();
+try {
+return DelegatingResultSet.wrapResultSet(connection, 
databaseMetaData.getCatalogs());
+} catch (final SQLException e) {
+handleException(e);
+throw new AssertionError();
+}
+}
+
+@Override
 public String getCatalogSeparator() throws SQLException {
 try {
 return 

commons-dbcp git commit: [DBCP-505] Update Java requirement from version 7 to 8.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master 75c18b2c1 -> f4cdc188e


[DBCP-505] Update Java requirement from version 7 to 8.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/f4cdc188
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/f4cdc188
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/f4cdc188

Branch: refs/heads/master
Commit: f4cdc188ed53eaeb92f1ba62e3bec61a684a4cf4
Parents: 75c18b2
Author: Gary Gregory 
Authored: Sat Jun 16 17:30:42 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:30:42 2018 -0600

--
 pom.xml | 31 +++
 src/changes/changes.xml |  3 +++
 2 files changed, 22 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f4cdc188/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 3ac648b..eba805f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   
   4.0.0
   commons-dbcp2
-  2.4.1-SNAPSHOT
+  2.5.0-SNAPSHOT
   Apache Commons DBCP
 
   2001
@@ -273,21 +273,28 @@
   
 UTF-8
 UTF-8
-1.7
-1.7
+1.8
+1.8
 dbcp
 RC1
 org.apache.commons.dbcp2
-2.4.0
-for JDBC 4.1 (Java 7.0+)
-1.4
-for JDBC 4 (Java 6.0)
-
-
commons-dbcp-${commons.release.2.version}
-1.3
-for JDBC 3 (Java 1.4 or 5)
+
+2.5.0
+for JDBC 4.2 on Java 8
+
+2.4.0
+for JDBC 4.1 on Java 7
+
 
 
commons-dbcp-${commons.release.3.version}
+1.4
+for JDBC 4 on Java 6
+
+
+
commons-dbcp-${commons.release.4.version}
+1.3
+for JDBC 3 on Java 1.4 or 
5
+
 dbcp
 
https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-dbcp
 
site-content
@@ -301,7 +308,7 @@
 
javax.transaction;version="1.1.0",javax.transaction.xa;version="1.1.0";partial=true;mandatory:=partial,*
 
true
 
-2.3.0
+2.4.0
 true
 
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}
 Gary Gregory

http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f4cdc188/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6cc2e1f..db111aa 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -61,6 +61,9 @@ The  type attribute can be add,update,fix,remove.
 
   
 
+  
+Update Java requirement from version 7 to 8.
+  
 
 
   



commons-dbcp git commit: Next version.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master 1edcd55fc -> 75c18b2c1


Next version.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/75c18b2c
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/75c18b2c
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/75c18b2c

Branch: refs/heads/master
Commit: 75c18b2c18f2d478d6d94251e6657337d07c2388
Parents: 1edcd55
Author: Gary Gregory 
Authored: Sat Jun 16 17:28:54 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 17:28:54 2018 -0600

--
 src/changes/changes.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/75c18b2c/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b318530..6cc2e1f 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -60,7 +60,9 @@ The  type attribute can be add,update,fix,remove.
  -->
 
   
-
+
+
+
   
 Connection leak during XATransaction in high load.
   



svn commit: r1833652 - /commons/proper/commons-parent/trunk/pom.xml

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 23:19:46 2018
New Revision: 1833652

URL: http://svn.apache.org/viewvc?rev=1833652=rev
Log:
maven-enforcer-plugin 3.0.0-M1 -> 3.0.0-M2.

Modified:
commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1833652=1833651=1833652=diff
==
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Sat Jun 16 23:19:46 2018
@@ -52,6 +52,7 @@
 - maven-site-plugin 3.7.0 -> 3.7.1.
 - org.apache.maven.wagon:wagon-ssh 3.0.0 -> 3.1.0
 - maven-surefire-report-plugin 2.21.0 -> 2.22.0
+- maven-enforcer-plugin 3.0.0-M1 -> 3.0.0-M2
   
   -->
   
@@ -665,7 +666,7 @@
 true
 org.apache.maven.plugins
 maven-enforcer-plugin
-3.0.0-M1
+3.0.0-M2
 
   
 




svn commit: r27513 - in /dev/commons/dbcp: 2.4.0-RC1/ site.zip

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 22:40:34 2018
New Revision: 27513

Log:
Apache Commons DBCP 2.4.0.

Removed:
dev/commons/dbcp/2.4.0-RC1/
dev/commons/dbcp/site.zip



svn commit: r1833651 - /commons/cms-site/trunk/conf/component_releases.properties

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 22:39:11 2018
New Revision: 1833651

URL: http://svn.apache.org/viewvc?rev=1833651=rev
Log:
dbcpVersion=2.4.0
dbcpReleased=2018-06-16

Modified:
commons/cms-site/trunk/conf/component_releases.properties

Modified: commons/cms-site/trunk/conf/component_releases.properties
URL: 
http://svn.apache.org/viewvc/commons/cms-site/trunk/conf/component_releases.properties?rev=1833651=1833650=1833651=diff
==
--- commons/cms-site/trunk/conf/component_releases.properties (original)
+++ commons/cms-site/trunk/conf/component_releases.properties Sat Jun 16 
22:39:11 2018
@@ -22,8 +22,8 @@ cryptoVersion=1.0.0
 cryptoReleased=2016-07-22
 daemonVersion=1.0.15
 daemonReleased=2013-04-03
-dbcpVersion=2.3.0
-dbcpReleased=2018-05-12
+dbcpVersion=2.4.0
+dbcpReleased=2018-06-16
 dbutilsVersion=1.7
 dbutilsReleased=2017-07-20
 digesterVersion=3.2




svn commit: r27512 - in /release/commons/dbcp: ./ binaries/ source/

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 22:19:41 2018
New Revision: 27512

Log:
Apache Commons DBCP 2.4.0.

Removed:
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.tar.gz
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.tar.gz.asc
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.tar.gz.sha1
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.tar.gz.sha256
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.zip
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.zip.asc
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.zip.sha1
release/commons/dbcp/binaries/commons-dbcp2-2.3.0-bin.zip.sha256
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.tar.gz
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.tar.gz.asc
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.tar.gz.sha1
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.tar.gz.sha256
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.zip
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.zip.asc
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.zip.sha1
release/commons/dbcp/source/commons-dbcp2-2.3.0-src.zip.sha256
Modified:
release/commons/dbcp/README.html
release/commons/dbcp/binaries/README.html
release/commons/dbcp/source/README.html

Modified: release/commons/dbcp/README.html
==
--- release/commons/dbcp/README.html (original)
+++ release/commons/dbcp/README.html Sat Jun 16 22:19:41 2018
@@ -3,7 +3,7 @@
 
 Note that DBCP comes in three versions which are for different JDBC releases:
 
-DBCP 2.3.0 for JDBC 4.1 (Java 7+)
+DBCP 2.4.0 for JDBC 4.1 (Java 7+)
 DBCP 1.4 for JDBC 4 (Java 6)
 DBCP 1.3 for JDBC 3 (Java 1.4 and Java 5)
 
@@ -45,13 +45,13 @@ HREF="http://www.apache.org/dist/commons
 
 Always test available signatures, e.g.,
 $ pgpk -a KEYS
-$ pgpv commons-dbcp2-2.3.0-bin.tar.gz.asc
+$ pgpv commons-dbcp2-2.4.0-bin.tar.gz.asc
 or,
 $ pgp -ka KEYS
-$ pgp commons-dbcp2-2.3.0-bin.tar.gz.asc
+$ pgp commons-dbcp2-2.4.0-bin.tar.gz.asc
 or,
 $ gpg --import KEYS
-$ gpg --verify commons-dbcp2-2.3.0-bin.tar.gz.asc
+$ gpg --verify commons-dbcp2-2.4.0-bin.tar.gz.asc
 
 
 

Modified: release/commons/dbcp/binaries/README.html
==
--- release/commons/dbcp/binaries/README.html (original)
+++ release/commons/dbcp/binaries/README.html Sat Jun 16 22:19:41 2018
@@ -1 +1,57 @@
-link ../README.html
\ No newline at end of file
+Commons-DBCP
+
+
+Note that DBCP comes in three versions which are for different JDBC releases:
+
+DBCP 2.4.0 for JDBC 4.1 (Java 7+)
+DBCP 1.4 for JDBC 4 (Java 6)
+DBCP 1.3 for JDBC 3 (Java 1.4 and Java 5)
+
+
+
+Note:
+The tar files in the distribution use GNU tar extensions
+and must be untarred with a GNU compatible version of tar. The version
+of tar on Solaris and Mac OS X will not work with these files
+
+Changes
+
+The changes in this release are detailed in the release notes.
+
+Thank you for using http://commons.apache.org/dbcp/;>Commons 
DBCP.
+
+From the Apache Commons Projecthttp://commons.apache.org/;>http://commons.apache.org/
+
+Download from your
+http://www.apache.org/dyn/closer.cgi/commons/;>nearest mirror 
site!
+
+
+Do not download from www.apache.org.  Please use a mirror site
+to help us save apache.org bandwidth.
+http://www.apache.org/dyn/closer.cgi/commons/;>Go 
+  here to find your nearest mirror.
+
+
+Signatures
+
+Many of the files have been digitally signed using GnuPG.  If so,
+there will be an accompanying file.asc signature
+file in the same directory as the file (binaries/ or source/).  The
+signing keys can be found in the distribution directory at http://www.apache.org/dist/commons/KEYS;>http://www.apache.org/dist/commons/KEYS.
+
+Always download the KEYS file directly from the Apache site, never from 
a mirror site.
+
+
+Always test available signatures, e.g.,
+$ pgpk -a KEYS
+$ pgpv commons-dbcp2-2.4.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-dbcp2-2.4.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-dbcp2-2.4.0-bin.tar.gz.asc
+
+
+

Modified: release/commons/dbcp/source/README.html
==
--- release/commons/dbcp/source/README.html (original)
+++ release/commons/dbcp/source/README.html Sat Jun 16 22:19:41 2018
@@ -1 +1,57 @@
-link ../README.html
\ No newline at end of file
+Commons-DBCP
+
+
+Note that DBCP comes in three versions which are for different JDBC releases:
+
+DBCP 2.4.0 for JDBC 4.1 (Java 7+)
+DBCP 1.4 for JDBC 4 (Java 6)
+DBCP 1.3 for JDBC 3 (Java 1.4 and Java 5)
+
+
+
+Note:
+The tar files in the distribution use GNU tar extensions
+and must be untarred with a GNU compatible version of tar. The version
+of tar on Solaris and Mac OS X will not work with these files
+
+Changes
+
+The changes in this release are detailed in the 

commons-dbcp git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master e2f101cc5 -> 1edcd55fc


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/1edcd55f
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/1edcd55f
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/1edcd55f

Branch: refs/heads/master
Commit: 1edcd55fc5b2627f4eb52111f955af589a47adc7
Parents: e2f101c
Author: Gary Gregory 
Authored: Sat Jun 16 16:16:15 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 16:16:15 2018 -0600

--
 .../java/org/apache/commons/dbcp2/managed/TransactionRegistry.java | 2 +-
 .../java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/1edcd55f/src/main/java/org/apache/commons/dbcp2/managed/TransactionRegistry.java
--
diff --git 
a/src/main/java/org/apache/commons/dbcp2/managed/TransactionRegistry.java 
b/src/main/java/org/apache/commons/dbcp2/managed/TransactionRegistry.java
index 1cd28c1..250d6dc 100644
--- a/src/main/java/org/apache/commons/dbcp2/managed/TransactionRegistry.java
+++ b/src/main/java/org/apache/commons/dbcp2/managed/TransactionRegistry.java
@@ -111,7 +111,7 @@ public class TransactionRegistry {
 throw new SQLException("Unable to determine current transaction ", 
e);
 }
 
-// register the the context (or create a new one)
+// register the context (or create a new one)
 synchronized (this) {
 TransactionContext cache = caches.get(transaction);
 if (cache == null) {

http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/1edcd55f/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
--
diff --git 
a/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java 
b/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
index 09d4af9..60292ad 100644
--- a/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
+++ b/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
@@ -26,7 +26,7 @@ import org.apache.commons.dbcp2.ConnectionFactory;
  * XAConnectionFactory is an extension of ConnectionFactory used to create 
connections in a transaction managed
  * environment. The XAConnectionFactory operates like a normal 
ConnectionFactory except a TransactionRegistry is
  * provided from which the XAResource for a connection can be obtained. This 
allows the existing DBCP pool code to work
- * with XAConnections and gives a the ManagedConnection a way to enlist a 
connection in the the transaction.
+ * with XAConnections and gives a the ManagedConnection a way to enlist a 
connection in the transaction.
  *
  * @since 2.0
  */



[3/5] commons-dbcp git commit: Merge branch 'master' into release.

2018-06-16 Thread ggregory
Merge branch 'master' into release.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/56608557
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/56608557
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/56608557

Branch: refs/heads/master
Commit: 5660855731502d00319f54cd584c95afa487a854
Parents: fb23b15
Author: Gary Gregory 
Authored: Wed Jun 13 12:06:42 2018 -0600
Committer: Gary Gregory 
Committed: Wed Jun 13 12:06:42 2018 -0600

--
 pom.xml | 95 +---
 1 file changed, 91 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/56608557/pom.xml
--
diff --git a/pom.xml b/pom.xml
index fa9a2b7..4387356 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,6 +132,14 @@
   ggreg...@apache.org
   The Apache Software Foundation
 
+
+  Ignacio J. Ortega
+  nacho
+
+
+  Sean C. Sullivan
+  sullis
+
   
   
 
@@ -148,6 +156,15 @@
 
   Philippe Mouawad
 
+
+  Glenn L. Nielsen
+
+
+  James House
+
+
+  James Ring
+
   
 
   
@@ -215,6 +232,42 @@
 
   
 
+
+  com.h2database
+  h2
+  1.4.197
+  test
+
+
+  org.jboss.narayana.jta
+  narayana-jta
+  5.8.2.Final
+  test
+
+
+  org.jboss.spec.javax.transaction
+  jboss-transaction-api_1.2_spec
+  1.0.0.Final
+  test
+
+
+  org.jboss
+  jboss-transaction-spi
+  7.6.0.Final
+  
+
+  org.jboss.logging
+  jboss-logging-spi
+
+  
+  test
+
+
+  org.jboss.logging
+  jboss-logging
+  3.1.4.GA
+  test
+
   
 
   
@@ -222,12 +275,10 @@
 UTF-8
 1.7
 1.7
-
scm:svn:https://dist.apache.org/repos/dist/dev/commons/dbcp/
-true
-dbcp2
+dbcp
 RC1
 org.apache.commons.dbcp2
-2.3.0
+2.4.0
 for JDBC 4.1 (Java 7.0+)
 1.4
 for JDBC 4 (Java 6.0)
@@ -249,6 +300,12 @@
 
 
javax.transaction;version="1.1.0",javax.transaction.xa;version="1.1.0";partial=true;mandatory:=partial,*
 
true
+
+2.3.0
+true
+
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}
+Gary Gregory
+86fdc7e2a11262cb
   
 
   
@@ -417,4 +474,34 @@
   
 
   
+  
+
+  jdk7
+  
+(,1.7]
+  
+  
+
+  
+org.apache.maven.plugins
+maven-surefire-plugin
+
+  
+
+
org.apache.commons.dbcp2.StackMessageLog
+  
+  plain
+  
+
+**/Tester*.java
+
+**/Test*$*.java
+**/*Narayana*.java
+  
+
+  
+
+  
+
+  
 



[1/5] commons-dbcp git commit: Release 2.3.0.

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Branches:
  refs/heads/master 8c42fb865 -> e2f101cc5


Release 2.3.0.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/f8b21869
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/f8b21869
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/f8b21869

Branch: refs/heads/master
Commit: f8b2186914a4d14c735b9bd7ea4f0961e56bb936
Parents: 6040b67
Author: Gary Gregory 
Authored: Sun May 13 08:03:57 2018 -0600
Committer: Gary Gregory 
Committed: Sun May 13 08:03:57 2018 -0600

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


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f8b21869/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 65488de..26aa9a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   
   4.0.0
   commons-dbcp2
-  2.3.1-SNAPSHOT
+  2.3.0
   Apache Commons DBCP
 
   2001



[2/5] commons-dbcp git commit: Merge branch 'master' into release.

2018-06-16 Thread ggregory
Merge branch 'master' into release.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/fb23b153
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/fb23b153
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/fb23b153

Branch: refs/heads/master
Commit: fb23b1530cfcf68004bf59a6a3e2a68fe79426b1
Parents: f8b2186 8c42fb8
Author: Gary Gregory 
Authored: Wed Jun 13 11:28:10 2018 -0600
Committer: Gary Gregory 
Committed: Wed Jun 13 11:28:10 2018 -0600

--
 .gitignore  |4 +-
 CONTRIBUTING.md |2 +-
 README.md   |   14 +-
 RELEASE-NOTES.txt   |   47 +-
 build.properties.sample |   58 -
 build.xml   |  283 ---
 dbcp-RC.sh  |2 +-
 dbcp-pre-RC.sh  |2 +-
 dbcp-release.sh |4 +-
 doc/README.txt  |2 +-
 pom.xml |2 +-
 src/changes/changes.xml |   47 +-
 src/changes/release-notes.vm|2 +-
 .../apache/commons/dbcp2/AbandonedTrace.java|   72 +-
 .../apache/commons/dbcp2/BasicDataSource.java   | 1356 ++---
 .../commons/dbcp2/BasicDataSourceFactory.java   |  248 +--
 .../commons/dbcp2/BasicDataSourceMXBean.java|   40 +
 .../apache/commons/dbcp2/ConnectionFactory.java |7 +-
 .../org/apache/commons/dbcp2/Constants.java |   13 +-
 .../dbcp2/DataSourceConnectionFactory.java  |   64 +-
 .../dbcp2/DelegatingCallableStatement.java  | 1069 ---
 .../commons/dbcp2/DelegatingConnection.java |  525 +++---
 .../dbcp2/DelegatingDatabaseMetaData.java   | 1595 ++--
 .../dbcp2/DelegatingPreparedStatement.java  |  499 +++--
 .../commons/dbcp2/DelegatingResultSet.java  | 1774 +-
 .../commons/dbcp2/DelegatingStatement.java  |  500 +++--
 .../commons/dbcp2/DriverConnectionFactory.java  |   35 +-
 .../dbcp2/DriverManagerConnectionFactory.java   |   71 +-
 .../dbcp2/LifetimeExceededException.java|5 +-
 .../org/apache/commons/dbcp2/ListException.java |   57 +
 .../apache/commons/dbcp2/ObjectNameWrapper.java |6 +-
 .../java/org/apache/commons/dbcp2/PStmtKey.java |  562 --
 .../dbcp2/PoolableCallableStatement.java|   68 +-
 .../commons/dbcp2/PoolableConnection.java   |   67 +-
 .../dbcp2/PoolableConnectionFactory.java|  301 +--
 .../commons/dbcp2/PoolableConnectionMXBean.java |   17 +-
 .../dbcp2/PoolablePreparedStatement.java|   53 +-
 .../apache/commons/dbcp2/PoolingConnection.java |  738 
 .../apache/commons/dbcp2/PoolingDataSource.java |  122 +-
 .../org/apache/commons/dbcp2/PoolingDriver.java |  105 +-
 .../commons/dbcp2/SwallowedExceptionLogger.java |   21 +-
 .../java/org/apache/commons/dbcp2/Utils.java|   91 +-
 .../dbcp2/cpdsadapter/ConnectionImpl.java   |  219 ++-
 .../dbcp2/cpdsadapter/DriverAdapterCPDS.java|  481 ++---
 .../commons/dbcp2/cpdsadapter/PStmtKeyCPDS.java |   94 +-
 .../dbcp2/cpdsadapter/PooledConnectionImpl.java |  642 ---
 .../datasources/CPDSConnectionFactory.java  |  231 +--
 .../datasources/InstanceKeyDataSource.java  |  715 +++
 .../InstanceKeyDataSourceFactory.java   |  282 ++-
 .../datasources/KeyedCPDSConnectionFactory.java |  205 +-
 .../datasources/PerUserPoolDataSource.java  | 1480 ---
 .../PerUserPoolDataSourceFactory.java   |   52 +-
 .../commons/dbcp2/datasources/PoolKey.java  |   54 +-
 .../datasources/PooledConnectionAndInfo.java|   55 +-
 .../datasources/PooledConnectionManager.java|   30 +-
 .../dbcp2/datasources/SharedPoolDataSource.java |  137 +-
 .../SharedPoolDataSourceFactory.java|   12 +-
 .../commons/dbcp2/datasources/UserPassKey.java  |  108 +-
 .../dbcp2/managed/BasicManagedDataSource.java   |   90 +-
 .../managed/DataSourceXAConnectionFactory.java  |  109 +-
 .../dbcp2/managed/LocalXAConnectionFactory.java |  134 +-
 .../dbcp2/managed/ManagedConnection.java|   75 +-
 .../dbcp2/managed/ManagedDataSource.java|   46 +-
 .../managed/PoolableManagedConnection.java  |   38 +-
 .../PoolableManagedConnectionFactory.java   |   31 +-
 .../dbcp2/managed/TransactionContext.java   |   85 +-
 .../managed/TransactionContextListener.java |8 +-
 .../dbcp2/managed/TransactionRegistry.java  |   63 +-
 .../dbcp2/managed/XAConnectionFactory.java  |   24 +-
 .../org/apache/commons/dbcp2/package-info.java  |  207 +-
 src/site/site.xml   |1 +
 src/site/xdoc/configuration.xml | 1012 +-
 

[4/5] commons-dbcp git commit: Prepare for release 2.4.0.

2018-06-16 Thread ggregory
Prepare for release 2.4.0.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/d7aa662f
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/d7aa662f
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/d7aa662f

Branch: refs/heads/master
Commit: d7aa662fbbb99e536ae28c47d0c4e1d51e39d5b9
Parents: 5660855
Author: Gary Gregory 
Authored: Wed Jun 13 13:26:05 2018 -0600
Committer: Gary Gregory 
Committed: Wed Jun 13 13:26:05 2018 -0600

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


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/d7aa662f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 4387356..466 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   
   4.0.0
   commons-dbcp2
-  2.4.0-SNAPSHOT
+  2.4.0
   Apache Commons DBCP
 
   2001



[5/5] commons-dbcp git commit: Bump to next development version

2018-06-16 Thread ggregory
Bump to next development version


Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/e2f101cc
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/e2f101cc
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/e2f101cc

Branch: refs/heads/master
Commit: e2f101cc5bcd0acef17ddb122cd98cc9695be5db
Parents: d7aa662
Author: Gary Gregory 
Authored: Sat Jun 16 16:13:58 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 16:13:58 2018 -0600

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


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/e2f101cc/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 466..3ac648b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   
   4.0.0
   commons-dbcp2
-  2.4.0
+  2.4.1-SNAPSHOT
   Apache Commons DBCP
 
   2001



[commons-dbcp] Git Push Summary

2018-06-16 Thread ggregory
Repository: commons-dbcp
Updated Tags:  refs/tags/commons-dbcp-2.4.0 [created] 9e922bfb0


svn commit: r27511 - /dev/commons/dbcp/2.4.0-RC1/ /dev/commons/dbcp/2.4.0-RC1/binaries/ /dev/commons/dbcp/2.4.0-RC1/source/ /release/commons/dbcp/ /release/commons/dbcp/binaries/ /release/commons/dbcp

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 22:08:26 2018
New Revision: 27511

Log:
Publish commons-dbcp2 2.4.0 Release

Added:
release/commons/dbcp/RELEASE-NOTES.txt
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/RELEASE-NOTES.txt
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.tar.gz
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.tar.gz.asc
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.asc
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha1
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha1
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha256
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha256
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.zip
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.zip.asc
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.asc
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.zip.sha1
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.sha1
release/commons/dbcp/binaries/commons-dbcp2-2.4.0-bin.zip.sha256
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.sha256
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.tar.gz
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.tar.gz.asc
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.asc
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.tar.gz.sha1
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.sha1
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.tar.gz.sha256
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.sha256
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.zip
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.zip.asc
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.asc
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.zip.sha1
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.sha1
release/commons/dbcp/source/commons-dbcp2-2.4.0-src.zip.sha256
  - copied unchanged from r27510, 
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.sha256
Removed:
dev/commons/dbcp/2.4.0-RC1/RELEASE-NOTES.txt
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.asc
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha1
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.tar.gz.sha256
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.asc
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.sha1
dev/commons/dbcp/2.4.0-RC1/binaries/commons-dbcp2-2.4.0-bin.zip.sha256
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.asc
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.sha1
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.tar.gz.sha256
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.asc
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.sha1
dev/commons/dbcp/2.4.0-RC1/source/commons-dbcp2-2.4.0-src.zip.sha256



Nexus: Promotion Completed

2018-06-16 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Release Apache Commons DBCP 2.4.0 from RC1.Deployer properties:"userAgent" = "Apache-Maven/3.5.3 (Java 1.8.0_172; Windows 10 10.0)""userId" = "ggregory""ip" = "97.122.219.125"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-test-sources.jar(SHA1: a8cb680bd20e46b548413ab4f3159a1b6af370fc)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-javadoc.jar.asc(SHA1: a2fbc96c6b8553b13b4f2ed653d9aa5717e89842)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0.pom(SHA1: c73a1f93433feba1cd4fc8d3994b4e830ee0c7cd)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-sources.jar(SHA1: f3a963f855209e9b4a18ea642a3a01adb95d8946)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0.jar.asc(SHA1: 3352f1b1ab04452445709d19272449bc5238d735)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-test-sources.jar.asc(SHA1: e073bc4700757d6b6d66a84989ba9f72b85fa2d4)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0.pom.asc(SHA1: df3fbc3dc6460cba003b16f8eba13ed3ffd8beef)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0.jar(SHA1: d8ebe77dea8e3b76218874b5e56957727a3fbab7)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-javadoc.jar(SHA1: 46cfd110cc0002c5f37bc6965e0149ec208ef458)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-sources.jar.asc(SHA1: b3a3467cf022728806eb2db63ca0c1fa76f9a5f4)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-tests.jar.asc(SHA1: 51051e26c5eb6c76e4dbf9523e9c9f22be548343)/org/apache/commons/commons-dbcp2/2.4.0/commons-dbcp2-2.4.0-tests.jar(SHA1: 8546d77cf33dbe35145fbcbd4890f29a673b6e97)Action performed by Gary D. Gregory (ggregory)

commons-io git commit: Revert "The the patrol."

2018-06-16 Thread ggregory
Repository: commons-io
Updated Branches:
  refs/heads/master 41059e4a4 -> 078af456f


Revert "The the patrol."

This reverts commit 41059e4a4827e882b7c77667ff62c9b0567e5e21.


Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/078af456
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/078af456
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/078af456

Branch: refs/heads/master
Commit: 078af456fd74c3726438bfe853492286d7006c06
Parents: 41059e4
Author: Gary Gregory 
Authored: Sat Jun 16 15:51:59 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:51:59 2018 -0600

--
 src/test/java/org/apache/commons/io/input/TailerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-io/blob/078af456/src/test/java/org/apache/commons/io/input/TailerTest.java
--
diff --git a/src/test/java/org/apache/commons/io/input/TailerTest.java 
b/src/test/java/org/apache/commons/io/input/TailerTest.java
index c5680a3..66b5c68 100644
--- a/src/test/java/org/apache/commons/io/input/TailerTest.java
+++ b/src/test/java/org/apache/commons/io/input/TailerTest.java
@@ -360,7 +360,7 @@ public class TailerTest {
 }
 
 /*
- * Tests [IO-357][Tailer] InterruptedException while thead is sleeping is 
silently ignored.
+ * Tests [IO-357][Tailer] InterruptedException while the thead is sleeping 
is silently ignored.
  */
 @Test
 public void testInterrupt() throws Exception {



commons-rdf git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-rdf
Updated Branches:
  refs/heads/master 092c465f9 -> 64185d21b


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/64185d21
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/64185d21
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/64185d21

Branch: refs/heads/master
Commit: 64185d21b51d1ed32c419f443f804ae2e09ee5f8
Parents: 092c465
Author: Gary Gregory 
Authored: Sat Jun 16 15:49:37 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:49:37 2018 -0600

--
 .../src/main/java/org/apache/commons/rdf/api/Dataset.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/64185d21/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Dataset.java
--
diff --git 
a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Dataset.java 
b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Dataset.java
index 22135b5..3c0e568 100644
--- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Dataset.java
+++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Dataset.java
@@ -123,7 +123,7 @@ public interface Dataset extends AutoCloseable, 
GraphLike {
 /**
  * Get a named graph in this dataset.
  * 
- * The {@link Triple}s of the named graph are equivalent to the the Quads 
of
+ * The {@link Triple}s of the named graph are equivalent to the Quads of
  * this Dataset which has the {@link Quad#getGraphName()} equal to the
  * provided graphName, or equal to {@link Optional#empty()} if
  * the provided graphName is null.



[math] The the patrol.

2018-06-16 Thread ggregory
Repository: commons-math
Updated Branches:
  refs/heads/master 00a0c6cb8 -> eb57d6d45


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/eb57d6d4
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/eb57d6d4
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/eb57d6d4

Branch: refs/heads/master
Commit: eb57d6d457002a0bb5336d789a3381a24599affe
Parents: 00a0c6c
Author: Gary Gregory 
Authored: Sat Jun 16 15:48:50 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:48:50 2018 -0600

--
 .../math4/fitting/leastsquares/GaussNewtonOptimizer.java   | 2 +-
 .../apache/commons/math4/geometry/spherical/oned/ArcsSet.java  | 2 +-
 .../apache/commons/math4/geometry/spherical/twod/Circle.java   | 2 +-
 src/main/java/org/apache/commons/math4/linear/MatrixUtils.java | 4 ++--
 .../math4/optim/nonlinear/scalar/noderiv/BOBYQAOptimizer.java  | 2 +-
 .../apache/commons/math4/stat/descriptive/moment/Variance.java | 2 +-
 .../org/apache/commons/math4/stat/descriptive/summary/Sum.java | 2 +-
 .../org/apache/commons/math4/stat/inference/ChiSquareTest.java | 6 +++---
 .../java/org/apache/commons/math4/stat/inference/GTest.java| 6 +++---
 src/main/java/org/apache/commons/math4/util/FastMath.java  | 2 +-
 10 files changed, 15 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-math/blob/eb57d6d4/src/main/java/org/apache/commons/math4/fitting/leastsquares/GaussNewtonOptimizer.java
--
diff --git 
a/src/main/java/org/apache/commons/math4/fitting/leastsquares/GaussNewtonOptimizer.java
 
b/src/main/java/org/apache/commons/math4/fitting/leastsquares/GaussNewtonOptimizer.java
index 24589ab..8ef5c89 100644
--- 
a/src/main/java/org/apache/commons/math4/fitting/leastsquares/GaussNewtonOptimizer.java
+++ 
b/src/main/java/org/apache/commons/math4/fitting/leastsquares/GaussNewtonOptimizer.java
@@ -279,7 +279,7 @@ public class GaussNewtonOptimizer implements 
LeastSquaresOptimizer {
 residuals.getEntry(i) * jacobian.getEntry(i, j));
 }
 
-// add the the contribution to the normal matrix for measurement i
+// add the contribution to the normal matrix for measurement i
 for (int k = 0; k < nC; ++k) {
 //only compute the upper triangular part
 for (int l = k; l < nC; ++l) {

http://git-wip-us.apache.org/repos/asf/commons-math/blob/eb57d6d4/src/main/java/org/apache/commons/math4/geometry/spherical/oned/ArcsSet.java
--
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/spherical/oned/ArcsSet.java 
b/src/main/java/org/apache/commons/math4/geometry/spherical/oned/ArcsSet.java
index 3db15a3..2955090 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/spherical/oned/ArcsSet.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/spherical/oned/ArcsSet.java
@@ -838,7 +838,7 @@ public class ArcsSet extends AbstractRegion implements Itera
 limits.remove(i);
 i = i - 1;
 } else {
-// special case, i the the last entry and j is the 
first entry
+// special case, i the last entry and j is the first 
entry
 // we have wrapped around list end
 final double lEnd   = limits.remove(limits.size() - 1);
 final double lStart = limits.remove(0);

http://git-wip-us.apache.org/repos/asf/commons-math/blob/eb57d6d4/src/main/java/org/apache/commons/math4/geometry/spherical/twod/Circle.java
--
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/Circle.java 
b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/Circle.java
index 3805967..07b8c5f 100644
--- a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/Circle.java
+++ b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/Circle.java
@@ -32,7 +32,7 @@ import org.apache.commons.math4.util.FastMath;
 /** This class represents an oriented great circle on the 2-sphere.
 
  * An oriented circle can be defined by a center point. The circle
- * is the the set of points that are in the normal plan the center.
+ * is the set of points that are in the normal plan the center.
 
  * Since it is oriented the two spherical caps at its two sides are
  * unambiguously identified as a left cap and a right cap. This can be

http://git-wip-us.apache.org/repos/asf/commons-math/blob/eb57d6d4/src/main/java/org/apache/commons/math4/linear/MatrixUtils.java

[lang] The the patrol.

2018-06-16 Thread ggregory
Repository: commons-lang
Updated Branches:
  refs/heads/master d9f1b897a -> 8e8b8e05e


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/8e8b8e05
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/8e8b8e05
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/8e8b8e05

Branch: refs/heads/master
Commit: 8e8b8e05e4eb9aa009444c2fea3552d28b57aa98
Parents: d9f1b89
Author: Gary Gregory 
Authored: Sat Jun 16 15:46:28 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:46:28 2018 -0600

--
 src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/8e8b8e05/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java
--
diff --git a/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java 
b/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java
index efb630c..deacce1 100644
--- a/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java
+++ b/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java
@@ -1216,7 +1216,7 @@ public class TypeUtils {
  */
 public static boolean typesSatisfyVariables(final Map, 
Type> typeVarAssigns) {
 Validate.notNull(typeVarAssigns, "typeVarAssigns is null");
-// all types must be assignable to all the bounds of the their mapped
+// all types must be assignable to all the bounds of their mapped
 // type variable.
 for (final Map.Entry, Type> entry : 
typeVarAssigns.entrySet()) {
 final TypeVariable typeVar = entry.getKey();



commons-io git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-io
Updated Branches:
  refs/heads/master c97e63795 -> 41059e4a4


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/41059e4a
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/41059e4a
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/41059e4a

Branch: refs/heads/master
Commit: 41059e4a4827e882b7c77667ff62c9b0567e5e21
Parents: c97e637
Author: Gary Gregory 
Authored: Sat Jun 16 15:46:01 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:46:01 2018 -0600

--
 src/test/java/org/apache/commons/io/input/TailerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-io/blob/41059e4a/src/test/java/org/apache/commons/io/input/TailerTest.java
--
diff --git a/src/test/java/org/apache/commons/io/input/TailerTest.java 
b/src/test/java/org/apache/commons/io/input/TailerTest.java
index 66b5c68..c5680a3 100644
--- a/src/test/java/org/apache/commons/io/input/TailerTest.java
+++ b/src/test/java/org/apache/commons/io/input/TailerTest.java
@@ -360,7 +360,7 @@ public class TailerTest {
 }
 
 /*
- * Tests [IO-357][Tailer] InterruptedException while the thead is sleeping 
is silently ignored.
+ * Tests [IO-357][Tailer] InterruptedException while thead is sleeping is 
silently ignored.
  */
 @Test
 public void testInterrupt() throws Exception {



commons-imaging git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-imaging
Updated Branches:
  refs/heads/master 2e8edba0e -> c8731920f


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-imaging/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-imaging/commit/c8731920
Tree: http://git-wip-us.apache.org/repos/asf/commons-imaging/tree/c8731920
Diff: http://git-wip-us.apache.org/repos/asf/commons-imaging/diff/c8731920

Branch: refs/heads/master
Commit: c8731920f3defd9436b053b5121b0af4c537cbbd
Parents: 2e8edba
Author: Gary Gregory 
Authored: Sat Jun 16 15:45:38 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:45:38 2018 -0600

--
 .../org/apache/commons/imaging/ImageParser.java | 62 ++--
 .../org/apache/commons/imaging/Imaging.java | 10 ++--
 .../imaging/formats/tiff/TiffImageParser.java   |  2 +-
 3 files changed, 37 insertions(+), 37 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-imaging/blob/c8731920/src/main/java/org/apache/commons/imaging/ImageParser.java
--
diff --git a/src/main/java/org/apache/commons/imaging/ImageParser.java 
b/src/main/java/org/apache/commons/imaging/ImageParser.java
index 0482a73..1ad0ea3 100644
--- a/src/main/java/org/apache/commons/imaging/ImageParser.java
+++ b/src/main/java/org/apache/commons/imaging/ImageParser.java
@@ -135,7 +135,7 @@ public abstract class ImageParser extends BinaryFileParser {
  * @return A valid, potentially subject-matter-specific implementation of
  * the IImageMetadata interface describing the content extracted
  * from the source content.
- * @throws ImageReadException In the event that the the ByteSource
+ * @throws ImageReadException In the event that the ByteSource
  *content does not conform to the format of 
the specific parser
  *implementation.
  * @throws IOExceptionIn the event of unsuccessful data read 
operation.
@@ -164,7 +164,7 @@ public abstract class ImageParser extends BinaryFileParser {
  * @return A valid, potentially subject-matter-specific implementation of
  * the IImageMetadata interface describing the content extracted
  * from the source content.
- * @throws ImageReadException In the event that the the ByteSource
+ * @throws ImageReadException In the event that the ByteSource
  *content does not conform to the format of 
the specific parser
  *implementation.
  * @throws IOExceptionIn the event of unsuccessful data read 
operation.
@@ -182,7 +182,7 @@ public abstract class ImageParser extends BinaryFileParser {
  * @return A valid, potentially subject-matter-specific implementation of
  * the IImageMetadata interface describing the content extracted
  * from the source content.
- * @throws ImageReadException In the event that the the specified content
+ * @throws ImageReadException In the event that the specified content
  *does not conform to the format of the 
specific
  *parser implementation.
  * @throws IOExceptionIn the event of unsuccessful data read 
operation.
@@ -210,7 +210,7 @@ public abstract class ImageParser extends BinaryFileParser {
  *   must be supported by implementations).
  * @return A valid image metadata object describing the content extracted
  * from  the specified content.
- * @throws ImageReadException In the event that the the specified content
+ * @throws ImageReadException In the event that the specified content
  *does not conform to the format of the 
specific
  *parser implementation.
  * @throws IOExceptionIn the event of unsuccessful data read 
operation.
@@ -229,7 +229,7 @@ public abstract class ImageParser extends BinaryFileParser {
  * @param file A valid reference to a file.
  * @return A valid image metadata object describing the content extracted
  * from  the specified content.
- * @throws ImageReadException In the event that the the specified content
+ * @throws ImageReadException In the event that the specified content
  *does not conform to the format of the 
specific
  *parser implementation.
  * @throws IOExceptionIn the event of unsuccessful file read or
@@ -258,7 +258,7 @@ public abstract class ImageParser extends BinaryFileParser {
  *   must be supported by implementations).
  * @return A valid image metadata object describing the content extracted
  * from  the 

commons-crypto git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-crypto
Updated Branches:
  refs/heads/master ccbeb2de8 -> 6dc74c0a9


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/6dc74c0a
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/6dc74c0a
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/6dc74c0a

Branch: refs/heads/master
Commit: 6dc74c0a9ad522cbdf641b5f4395d4a9984ee86c
Parents: ccbeb2d
Author: Gary Gregory 
Authored: Sat Jun 16 15:44:33 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:44:33 2018 -0600

--
 .../org/apache/commons/crypto/stream/CtrCryptoInputStream.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/6dc74c0a/src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java
--
diff --git 
a/src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java 
b/src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java
index 0766807..5a4ad95 100644
--- a/src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java
+++ b/src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java
@@ -469,7 +469,7 @@ public class CtrCryptoInputStream extends CryptoInputStream 
{
  *
  * @param buf The buffer into which bytes are to be transferred.
  * @param offset the start offset in the data.
- * @param len the the maximum number of decrypted data bytes to read.
+ * @param len the maximum number of decrypted data bytes to read.
  * @throws IOException if an I/O error occurs.
  */
 protected void decrypt(ByteBuffer buf, int offset, int len)



commons-csv git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-csv
Updated Branches:
  refs/heads/master 98d440793 -> ea13687e6


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/ea13687e
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/ea13687e
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/ea13687e

Branch: refs/heads/master
Commit: ea13687e6637fc50ff5c38585c26b57fbf811a3c
Parents: 98d4407
Author: Gary Gregory 
Authored: Sat Jun 16 15:44:55 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:44:55 2018 -0600

--
 src/main/java/org/apache/commons/csv/CSVFormat.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/ea13687e/src/main/java/org/apache/commons/csv/CSVFormat.java
--
diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java 
b/src/main/java/org/apache/commons/csv/CSVFormat.java
index ae96b1e..a74e47b 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -1943,7 +1943,7 @@ public final class CSVFormat implements Serializable {
 /**
  * Returns a new {@code CSVFormat} with skipping the header record set to 
{@code true}.
  *
- * @return A new CSVFormat that is equal to this but with the the 
specified skipHeaderRecord setting.
+ * @return A new CSVFormat that is equal to this but with the specified 
skipHeaderRecord setting.
  * @see #withSkipHeaderRecord(boolean)
  * @see #withHeader(String...)
  * @since 1.1
@@ -1958,7 +1958,7 @@ public final class CSVFormat implements Serializable {
  * @param skipHeaderRecord
  *whether to skip the header record.
  *
- * @return A new CSVFormat that is equal to this but with the the 
specified skipHeaderRecord setting.
+ * @return A new CSVFormat that is equal to this but with the specified 
skipHeaderRecord setting.
  * @see #withHeader(String...)
  */
 public CSVFormat withSkipHeaderRecord(final boolean skipHeaderRecord) {



commons-collections git commit: The the patrol.

2018-06-16 Thread ggregory
Repository: commons-collections
Updated Branches:
  refs/heads/master 3ec21db26 -> 11eca16f4


The the patrol.

Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-collections/commit/11eca16f
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/11eca16f
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/11eca16f

Branch: refs/heads/master
Commit: 11eca16f4a8b2e22c7271cae1fe9f23608bfb98e
Parents: 3ec21db
Author: Gary Gregory 
Authored: Sat Jun 16 15:44:05 2018 -0600
Committer: Gary Gregory 
Committed: Sat Jun 16 15:44:05 2018 -0600

--
 .../commons/collections4/CollectionUtils.java   |  2 +-
 .../commons/collections4/IterableUtils.java |  2 +-
 .../apache/commons/collections4/MapUtils.java   | 36 ++--
 .../iterators/ListIteratorWrapper.java  |  2 +-
 .../collection/AbstractCollectionTest.java  |  2 +-
 5 files changed, 22 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/11eca16f/src/main/java/org/apache/commons/collections4/CollectionUtils.java
--
diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java 
b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
index f498603..17f6577 100644
--- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
+++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
@@ -638,7 +638,7 @@ public class CollectionUtils {
  * @param obj the object to find the cardinality of
  * @param coll the {@link Iterable} to search
  * @param  the type of object that the {@link Iterable} may contain.
- * @return the the number of occurrences of obj in coll
+ * @return the number of occurrences of obj in coll
  * @throws NullPointerException if coll is null
  * @deprecated since 4.1, use {@link IterableUtils#frequency(Iterable, 
Object)} instead.
  *   Be aware that the order of parameters has changed.

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/11eca16f/src/main/java/org/apache/commons/collections4/IterableUtils.java
--
diff --git a/src/main/java/org/apache/commons/collections4/IterableUtils.java 
b/src/main/java/org/apache/commons/collections4/IterableUtils.java
index 05613c5..ac71740 100644
--- a/src/main/java/org/apache/commons/collections4/IterableUtils.java
+++ b/src/main/java/org/apache/commons/collections4/IterableUtils.java
@@ -742,7 +742,7 @@ public class IterableUtils {
  * @param  the element type of the object to find
  * @param iterable  the {@link Iterable} to search
  * @param obj  the object to find the cardinality of
- * @return the the number of occurrences of obj in iterable
+ * @return the number of occurrences of obj in iterable
  */
 public static  int frequency(final Iterable iterable, 
final T obj) {
 if (iterable instanceof Set) {

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/11eca16f/src/main/java/org/apache/commons/collections4/MapUtils.java
--
diff --git a/src/main/java/org/apache/commons/collections4/MapUtils.java 
b/src/main/java/org/apache/commons/collections4/MapUtils.java
index 30a084e..a27db8c 100644
--- a/src/main/java/org/apache/commons/collections4/MapUtils.java
+++ b/src/main/java/org/apache/commons/collections4/MapUtils.java
@@ -375,7 +375,7 @@ public class MapUtils {
 
 /**
  * Looks up the given key in the given map, converting the result into
- * a string, using the default value if the the conversion fails.
+ * a string, using the default value if the conversion fails.
  *
  * @param   the key type
  * @param map  the map whose value to look up
@@ -395,7 +395,7 @@ public class MapUtils {
 
 /**
  * Looks up the given key in the given map, converting the result into
- * a boolean, using the default value if the the conversion fails.
+ * a boolean, using the default value if the conversion fails.
  *
  * @param   the key type
  * @param map  the map whose value to look up
@@ -415,7 +415,7 @@ public class MapUtils {
 
 /**
  * Looks up the given key in the given map, converting the result into
- * a number, using the default value if the the conversion fails.
+ * a number, using the default value if the conversion fails.
  *
  * @param   the key type
  * @param map  the map whose value to look up
@@ -435,7 +435,7 @@ public class MapUtils {
 
 /**
  * Looks up the given key in the given map, converting the result into
- * a byte, using the default value if 

[lang] Fraction#getFraction: Replace "the the" with "the" in javadoc

2018-06-16 Thread pascalschumacher
Repository: commons-lang
Updated Branches:
  refs/heads/master 70be8e514 -> d9f1b897a


Fraction#getFraction: Replace "the the" with "the" in javadoc


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/d9f1b897
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/d9f1b897
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/d9f1b897

Branch: refs/heads/master
Commit: d9f1b897a28aeac97ff8d15948d3bc566021c53e
Parents: 70be8e5
Author: pascalschumacher 
Authored: Sat Jun 16 23:12:03 2018 +0200
Committer: pascalschumacher 
Committed: Sat Jun 16 23:12:03 2018 +0200

--
 src/main/java/org/apache/commons/lang3/math/Fraction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/d9f1b897/src/main/java/org/apache/commons/lang3/math/Fraction.java
--
diff --git a/src/main/java/org/apache/commons/lang3/math/Fraction.java 
b/src/main/java/org/apache/commons/lang3/math/Fraction.java
index 0924ac9..e849dcd 100644
--- a/src/main/java/org/apache/commons/lang3/math/Fraction.java
+++ b/src/main/java/org/apache/commons/lang3/math/Fraction.java
@@ -243,7 +243,7 @@ public final class Fraction extends Number implements 
Comparable {
  * @throws ArithmeticException if |value|  
Integer.MAX_VALUE
  *  or value = NaN
  * @throws ArithmeticException if the calculated denominator is 
zero
- * @throws ArithmeticException if the the algorithm does not converge
+ * @throws ArithmeticException if the algorithm does not converge
  */
 public static Fraction getFraction(double value) {
 final int sign = value < 0 ? -1 : 1;



svn commit: r1833639 - /commons/proper/commons-parent/trunk/pom.xml

2018-06-16 Thread ggregory
Author: ggregory
Date: Sat Jun 16 14:37:34 2018
New Revision: 1833639

URL: http://svn.apache.org/viewvc?rev=1833639=rev
Log:
maven-surefire-report-plugin 2.21.0 -> 2.22.0.

Modified:
commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1833639=1833638=1833639=diff
==
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Sat Jun 16 14:37:34 2018
@@ -51,6 +51,7 @@
 - maven-javadoc-plugin 3.0.0 -> 3.0.1 (Java 10 compatibility)
 - maven-site-plugin 3.7.0 -> 3.7.1.
 - org.apache.maven.wagon:wagon-ssh 3.0.0 -> 3.1.0
+- maven-surefire-report-plugin 2.21.0 -> 2.22.0
   
   -->
   
@@ -1764,8 +1765,8 @@
 
 1.8
 
1.3-SNAPSHOT
-2.21.0
-2.21.0
+2.22.0
+2.22.0
 2.21.0
 3.0.1
 0.12




Nexus: Staging Repository Dropped

2018-06-16 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Drop mistaken deploy.Deployer properties:"userAgent" = "Apache-Maven/3.5.3 (Java 1.8.0_172; Windows 10 10.0)""userId" = "ggregory""ip" = "97.122.219.125"Details:The orgapachecommons-1334 staging repository has been dropped.Action performed by Gary D. Gregory (ggregory)

Nexus: Staging Completed

2018-06-16 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Staging commons-build-plugin-1.9-RC1Deployer properties:"userAgent" = "Apache-Maven/3.5.3 (Java 1.8.0_162; Mac OS X 10.13.5)""userId" = "chtompki""ip" = "71.63.111.103"Details:The following artifacts have been staged/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-test-sources.jar.asc(SHA1: 45d3be49653fa0056ad1d56d35cc7b361c965642)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9.jar.asc(SHA1: 4cbd8dd19463f5f0db3fe0eecb51a326f1f9c3c7)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-sources.jar.asc(SHA1: a19fb8a9ef1ea3c94a31bf0ae118590576a2e4cf)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-sources.jar(SHA1: e2927627cdeea9e91856398815c1cf0b5c573fed)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-tests.jar.asc(SHA1: c73305ddceec566eb7ecb4c217e84206af55ec1e)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-javadoc.jar.asc(SHA1: 27eb5dc44ee7141def03fee9670fc329e78c10b8)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-test-sources.jar(SHA1: 962efca71894a9989f7381aa66b5278d1b6376de)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-tests.jar(SHA1: c8c09a579b38a3f111e1a3cc0796a4a8d6c64d52)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9-javadoc.jar(SHA1: 65159d5db375ee1ae770f59bcb28f3a1404b9abf)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9.pom.asc(SHA1: 055be6e4c22179876d711c1494c996a58a63a7fa)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9.jar(SHA1: edcb7f9a06034aa8d586ce113c7151cb14c9c663)/org/apache/commons/commons-build-plugin/1.9/commons-build-plugin-1.9.pom(SHA1: d593769fb4ff443a2d1d8bd67d95e2ecb818d9c6)Action performed by Rob Tompkins (chtompki)

svn commit: r27505 [11/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/js/jquery.min.js
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/js/jquery.min.js (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/js/jquery.min.js Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,4 @@
+/*! jQuery v1.7.1 jquery.com | jquery.org/license */
+(function(a,b){function cy(a){return 
f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function 
cv(a){if(!ck[a]){var 
b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return
 ck[a]}function cu(a,b){var 
c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return 
c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function 
cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function 
ci(){try{return new a.XMLHttpRequest}catch(b){}}function 
cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var 
d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p
 ;for(g=1;g0){if(c!=="border")for(;g=0===c})}function 
S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function 
K(){return!0}function J(){return!1}function n(a,b,c){var 
d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function
 m(a){for(var b in 
a){if(b==="data"&(a[b]))continue;if(b!=="toJSON")return!1}return!0}function
 l(a,c,d){if(d===b&===1){var 
e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof 
d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parse
 Float(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return 
d}function h(a){var 
b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[
 \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) 
([\w.]+)/,u=/(mozilla)(?:.*? 
rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.pro
 
totype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var
 g,h,j,k;if(!a)return 
this;if(a.nodeType){this.context=this[0]=a,this.length=1;return 
this}if(a==="body"&&!d&){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return
 this}if(typeof 
a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d
 instanceof 
e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return
 
e.merge(this,a)}h=c.getElementById(g[2]);if(h&){if(h.id!==g[2])return
 f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return 
this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return
 f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.
 context);return 
e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return 
this.length},toArray:function(){return F.call(this,0)},get:function(a){return 
a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var
 
d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?"
 ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return 
d},each:function(a,b){return 
e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return 
this},eq:function(a){a=+a;return 
a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return 
this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return
 this.pushStack(e.map(this,function(b,c){return 
a.call(b,c,b)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].
 splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var 
a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof 
i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof 

svn commit: r27505 [5/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/dependencies.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/dependencies.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/dependencies.html Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,2065 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Dependencies
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html; 

svn commit: r27505 [12/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/js/prettify.js
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/js/prettify.js (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/js/prettify.js Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,640 @@
+/**
+ *
+ * Copyright (C) 2006 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+function H() {
+var x = navigator && navigator.userAgent
+&& /\bMSIE 6\./.test(navigator.userAgent);
+H = function() {
+return x
+};
+return x
+}
+(function() {
+function x(b) {
+b = b.split(/ /g);
+var a = {};
+for ( var c = b.length; --c >= 0;) {
+var d = b[c];
+if (d)
+a[d] = null
+}
+return a
+}
+var y = "break continue do else for if return while ", U = y
++ "auto case char const default double enum extern float goto int 
long register short signed sizeof static struct switch typedef union unsigned 
void volatile ", D = U
++ "catch class delete false import new operator private protected 
public this throw true try ", I = D
++ "alignof align_union asm axiom bool concept concept_map 
const_cast constexpr decltype dynamic_cast explicit export friend inline 
late_check mutable namespace nullptr reinterpret_cast static_assert static_cast 
template typeid typename typeof using virtual wchar_t where ", J = D
++ "boolean byte extends final finally implements import instanceof 
null native package strictfp super synchronized throws transient ", V = J
++ "as base by checked decimal delegate descending event fixed 
foreach from group implicit in interface internal into is lock object out 
override orderby params readonly ref sbyte sealed stackalloc string select uint 
ulong unchecked unsafe ushort var ", K = D
++ "debugger eval export function get null set undefined var with 
Infinity NaN ", L = "caller delete die do dump elsif eval exit foreach for goto 
if import last local my next no our print package redo require sub undef unless 
until use wantarray while BEGIN END ", M = y
++ "and as assert class def del elif except exec finally from 
global import in is lambda nonlocal not or pass print raise try with yield 
False True None ", N = y
++ "alias and begin case class def defined elsif end ensure false 
in module next nil not or redo rescue retry self super then true undef unless 
until when yield BEGIN END ", O = y
++ "case done elif esac eval fi function in local set then until ", 
W = I
++ V + K + L + M + N + O;
+function X(b) {
+return b >= "a" && b <= "z" || b >= "A" && b <= "Z"
+}
+function u(b, a, c, d) {
+b.unshift(c, d || 0);
+try {
+a.splice.apply(a, b)
+} finally {
+b.splice(0, 2)
+}
+}
+var Y = (function() {
+var b = [ "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=", "&=",
+"(", "*", "*=", "+=", ",", "-=", "->", "/", "/=", ":", "::",
+";", "<", "<<", "<<=", "<=", "=", "==", "===", ">", ">=", ">>",
+">>=", ">>>", ">>>=", "?", "@", "[", "^", "^=", "^^", "^^=",
+"{", "|", "|=", "||", "||=", "~", "break", "case", "continue",
+"delete", "do", "else", "finally", "instanceof", "return",
+"throw", "try", "typeof" ], a = 
"(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)";
+for ( var c = 0; c < b.length; ++c) {
+var d = b[c];
+a += X(d.charAt(0)) ? "|\\b" + d : "|"
++ d.replace(/([^=<>:&])/g, "\\$1")
+}
+a += "|^)\\s*$";
+return new RegExp(a)
+})(), P = /&/g, Q = //g, Z = /\"/g;
+function $(b) {
+return b.replace(P, "").replace(Q, "").replace(R, "")
+.replace(Z, "")
+}
+function E(b) {
+return b.replace(P, "").replace(Q, "").replace(R, "")
+}
+var aa = //g, ba = //g, ca = //g, da = //g, ea = 
//g, fa = //g;
+function ga(b) {
+var a = b.indexOf("&");
+if (a < 0)
+return b;
+for (--a; (a = 

svn commit: r27505 [13/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/mail-page.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/mail-page.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/mail-page.html Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,385 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Generating Mailing List Page
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   





+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   

+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html; 

svn commit: r27505 [9/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/issue-tracking.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/issue-tracking.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/issue-tracking.html Sat Jun 
16 13:11:49 2018
@@ -0,0 +1,431 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Apache Commons Build Plugin Maven 
Mojo Issue tracking
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   
  
+  
+Help
+
+
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [3/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.9-RC1/site/copy-javadoc-files-mojo.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/copy-javadoc-files-mojo.html 
(added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/copy-javadoc-files-mojo.html 
Sat Jun 16 13:11:49 2018
@@ -0,0 +1,422 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  commons:copy-javadoc-files
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [15/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/sandbox-jira-page-mojo.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/sandbox-jira-page-mojo.html 
(added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/sandbox-jira-page-mojo.html 
Sat Jun 16 13:11:49 2018
@@ -0,0 +1,447 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  commons:sandbox-jira-page
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   





+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   

+  
+sandbox-jira-page
+
+
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [2/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/changes-report.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/changes-report.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/changes-report.html Sat Jun 
16 13:11:49 2018
@@ -0,0 +1,475 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Apache Commons Build Plugin 
Changes
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [14/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/project-reports.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/project-reports.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/project-reports.html Sat Jun 
16 13:11:49 2018
@@ -0,0 +1,348 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Generated Reports
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html; 

svn commit: r27505 [8/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.9-RC1/site/download_commons-build-plugin.html
==
--- 
dev/commons/commons-build-plugin/1.9-RC1/site/download_commons-build-plugin.html
 (added)
+++ 
dev/commons/commons-build-plugin/1.9-RC1/site/download_commons-build-plugin.html
 Sat Jun 16 13:11:49 2018
@@ -0,0 +1,442 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Download Apache Commons Build Plugin 
Maven Mojo
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [7/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.9-RC1/site/distribution-management.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/distribution-management.html 
(added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/distribution-management.html 
Sat Jun 16 13:11:49 2018
@@ -0,0 +1,365 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Distribution 
Management
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [1/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Author: chtompki
Date: Sat Jun 16 13:11:49 2018
New Revision: 27505

Log:
Staging release: commons-build-plugin, version: 1.9

Added:
dev/commons/commons-build-plugin/1.9-RC1/
dev/commons/commons-build-plugin/1.9-RC1/HEADER.html
dev/commons/commons-build-plugin/1.9-RC1/README.html
dev/commons/commons-build-plugin/1.9-RC1/RELEASE-NOTES.txt
dev/commons/commons-build-plugin/1.9-RC1/binaries/
dev/commons/commons-build-plugin/1.9-RC1/binaries/HEADER.html
dev/commons/commons-build-plugin/1.9-RC1/binaries/README.html
dev/commons/commons-build-plugin/1.9-RC1/site/
dev/commons/commons-build-plugin/1.9-RC1/site/all-mojo-sandbox.html
dev/commons/commons-build-plugin/1.9-RC1/site/all-mojo.html
dev/commons/commons-build-plugin/1.9-RC1/site/all-sandbox.html
dev/commons/commons-build-plugin/1.9-RC1/site/all.html
dev/commons/commons-build-plugin/1.9-RC1/site/changes-report.html
dev/commons/commons-build-plugin/1.9-RC1/site/contributing-md-mojo.html
dev/commons/commons-build-plugin/1.9-RC1/site/contributing-md.html
dev/commons/commons-build-plugin/1.9-RC1/site/copy-javadoc-files-build.html
dev/commons/commons-build-plugin/1.9-RC1/site/copy-javadoc-files-mojo.html
dev/commons/commons-build-plugin/1.9-RC1/site/css/
dev/commons/commons-build-plugin/1.9-RC1/site/css/bootstrap-1.3.0.min.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/bootstrap.min.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/commons-maven.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/commons-trade.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/maven-base.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/maven-theme.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/prettify.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/print.css
dev/commons/commons-build-plugin/1.9-RC1/site/css/site.css
dev/commons/commons-build-plugin/1.9-RC1/site/dependencies.html
dev/commons/commons-build-plugin/1.9-RC1/site/dependency-convergence.html
dev/commons/commons-build-plugin/1.9-RC1/site/dependency-info.html
dev/commons/commons-build-plugin/1.9-RC1/site/development.html
dev/commons/commons-build-plugin/1.9-RC1/site/distribution-management.html
dev/commons/commons-build-plugin/1.9-RC1/site/download-page-2release.jpg   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/download-page-mojo.html
dev/commons/commons-build-plugin/1.9-RC1/site/download-page.html

dev/commons/commons-build-plugin/1.9-RC1/site/download_commons-build-plugin.html
dev/commons/commons-build-plugin/1.9-RC1/site/images/
dev/commons/commons-build-plugin/1.9-RC1/site/images/add.gif   (with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/close.gif   (with 
props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/collapsed.gif   (with 
props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/commons-logo.png   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/expanded.gif   (with 
props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/external-classic.png   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/fix.gif   (with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/help_logo.gif   (with 
props)

dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_arrowfolderclosed1_sml.gif
   (with props)

dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_arrowfolderopen2_sml.gif
   (with props)

dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_arrowwaste1_sml.gif   
(with props)

dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_arrowwaste2_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_doc_lrg.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_doc_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_error_lrg.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_error_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_folder_lrg.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_folder_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_help_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_info_lrg.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_info_sml.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_members_lrg.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_sortdown.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_sortup.gif   
(with props)
dev/commons/commons-build-plugin/1.9-RC1/site/images/icon_success_lrg.gif   
(with props)

svn commit: r27505 [6/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/dependency-convergence.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/dependency-convergence.html 
(added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/dependency-convergence.html 
Sat Jun 16 13:11:49 2018
@@ -0,0 +1,511 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Dependency Convergence
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  

svn commit: r27505 [10/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-R

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/jira-report.html
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/jira-report.html (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/jira-report.html Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,802 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  JIRA Report
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  http://commons.apache.org/; id="bannerLeft" 
title="Apache Commons logo">
+   
 
+
+
+
+
+  
+
+  http://commons.apache.org/proper/commons-build-plugin/;>Apache Commons 
Build Plugin Maven Mojo 
+
+
+Last Published: 16 June 2018
+  | Version: 1.9
+  
+  
+
+  http://www.apachecon.com/; class="externalLink" 
title="ApacheCon">
+ApacheCon
+  
+  
+  http://www.apache.org; class="externalLink" 
title="Apache">
+Apache
+  
+  
+  
+Commons
+  
+
+
+
+  
+
+
+
+  
+
+  
+
+
+  Build Plugin
+
+  
+Overview
+  
+   




  
+  
+Goals
+
+  

+  
+all
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+all-sandbox
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+download-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+sandbox-jira-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+mail-page
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+readme-md
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+notice-txt
+
+  
+  
+properties
+  
+ 
+  
+   
  
+  
+contributing-md
+
+  
+  
+properties
+  
+ 
+  
+ 
+  
+   

+  
+Help
+
+  
+  
+Issue Tracking
+  
+ 
+  
+Development
+  
+ 
+  http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html; 
class="externalLink" 

svn commit: r27505 [4/15] - in /dev/commons/commons-build-plugin: ./ 1.9-RC1/ 1.9-RC1/binaries/ 1.9-RC1/site/ 1.9-RC1/site/css/ 1.9-RC1/site/images/ 1.9-RC1/site/images/logos/ 1.9-RC1/site/img/ 1.9-RC

2018-06-16 Thread chtompki
Added: dev/commons/commons-build-plugin/1.9-RC1/site/css/prettify.css
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/css/prettify.css (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/css/prettify.css Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,111 @@
+/**
+ *
+ * Copyright (C) 2006 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+
+.str {
+color: #080
+}
+
+.kwd {
+color: #008
+}
+
+.com {
+color: #800
+}
+
+.typ {
+color: #606
+}
+
+.lit {
+color: #066
+}
+
+.pun {
+color: #660
+}
+
+.pln {
+color: #000
+}
+
+.tag {
+color: #008
+}
+
+.atn {
+color: #606
+}
+
+.atv {
+color: #080
+}
+
+.dec {
+color: #606
+}
+
+.source {
+background-color: #EAEAEA;
+border: none;
+margin: 0.5em;
+}
+
+.source pre {
+font-family: "Monaco",Courier,monospace;
+font-size: 0.9em;
+margin-bottom: 0;
+}
+
+@media print {
+.str {
+color: #060
+}
+.kwd {
+color: #006;
+font-weight: bold
+}
+.com {
+color: #600;
+font-style: italic
+}
+.typ {
+color: #404;
+font-weight: bold
+}
+.lit {
+color: #044
+}
+.pun {
+color: #440
+}
+.pln {
+color: #000
+}
+.tag {
+color: #006;
+font-weight: bold
+}
+.atn {
+color: #404
+}
+.atv {
+color: #060
+}
+}
\ No newline at end of file

Added: dev/commons/commons-build-plugin/1.9-RC1/site/css/print.css
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/css/print.css (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/css/print.css Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/* $Id: print.css 1201871 2011-11-14 20:18:24Z simonetripodi $ */
+
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, 
#leftColumn, #navColumn {display: none !important;}
+#bodyColumn, body.docs div.docs {margin: 0 !important;border: none !important}

Added: dev/commons/commons-build-plugin/1.9-RC1/site/css/site.css
==
--- dev/commons/commons-build-plugin/1.9-RC1/site/css/site.css (added)
+++ dev/commons/commons-build-plugin/1.9-RC1/site/css/site.css Sat Jun 16 
13:11:49 2018
@@ -0,0 +1,82 @@
+/* $Id$ */
+
+div.clear { clear:both; visibility: hidden; }
+div.clear hr { display: none; }
+
+/* Tweaks to the fluido skin
+- */
+
+a.externalLink[href^="http"] {
+background-image: none;
+}
+
+#publishDate, #projectVersion, .divider {
+padding: 10px 0px 10px 10px;
+}
+
+li { line-height: 20px; }
+tt { font-family: Menlo, Monaco, "Courier New", monospace; font-size: 12px; 
-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; 
padding: 3px 4px; color: #d14; background-color: #f7f7f9; border: 1px solid 
#e1e1e8; }
+dt { margin: 15px 0 5px 0; font-size: 1.2em }
+
+.big-red { font-weight: bold; color: #D14 }
+.big-green { font-weight: bold; color: green }
+
+.layout-table { width: 100%; }
+.sidebar { width: 250px; vertical-align: top; }
+.content { padding-left: 20px; vertical-align: top; }
+
+.sidebar-nav { padding: 9px 0; }
+
+.logo-left { margin: 10px; float: left }
+.logo-right { margin: 5px; float: right; height: 100px }
+
+.navbar .nav { margin-left: 40px; }
+
+.nav-list { margin-bottom: 15px; }
+.nav-list li { line-height: 16px; }
+.nav-list li.nav-header { color: #333; }
+.nav-list li.nav-header i 

[commons-build-plugin] Git Push Summary

2018-06-16 Thread chtompki
Repository: commons-build-plugin
Updated Tags:  refs/tags/commons-build-plugin-1.9-RC1 [created] a37739438


svn commit: r27504 - in /dev/commons/commons-build-plugin: binaries/ source/

2018-06-16 Thread chtompki
Author: chtompki
Date: Sat Jun 16 13:06:59 2018
New Revision: 27504

Log:
Remove source and binaries folders

Removed:
dev/commons/commons-build-plugin/binaries/
dev/commons/commons-build-plugin/source/



commons-build-plugin git commit: Release plugin setup in properties

2018-06-16 Thread chtompki
Repository: commons-build-plugin
Updated Branches:
  refs/heads/1.9 753d0855d -> e616f130c


Release plugin setup in properties


Project: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-build-plugin/commit/e616f130
Tree: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/tree/e616f130
Diff: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/diff/e616f130

Branch: refs/heads/1.9
Commit: e616f130cfe90d3f6f82b1f617fa950b71033709
Parents: 753d085
Author: Rob Tompkins 
Authored: Sat Jun 16 09:04:46 2018 -0400
Committer: Rob Tompkins 
Committed: Sat Jun 16 09:04:46 2018 -0400

--
 pom.xml | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-build-plugin/blob/e616f130/pom.xml
--
diff --git a/pom.xml b/pom.xml
index ef7abe7..db469a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -209,10 +209,12 @@
 
 
 1.8
+1.9
+RC1
 true
 
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}
-Gary Gregory
-86FDC7E2A11262CB
+Rob Tompkins
+
B6E73D84EA4FCC47166087253FAAD2CD5ECBB314
   
   
 



commons-build-plugin git commit: Preparing for 1.9 release

2018-06-16 Thread chtompki
Repository: commons-build-plugin
Updated Branches:
  refs/heads/1.9 [created] 753d0855d


Preparing for 1.9 release


Project: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-build-plugin/commit/753d0855
Tree: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/tree/753d0855
Diff: http://git-wip-us.apache.org/repos/asf/commons-build-plugin/diff/753d0855

Branch: refs/heads/1.9
Commit: 753d0855dd628dec66c2ea8416b46ebbd46681f7
Parents: cfa875b
Author: Rob Tompkins 
Authored: Sat Jun 16 08:53:55 2018 -0400
Committer: Rob Tompkins 
Committed: Sat Jun 16 08:53:55 2018 -0400

--
 RELEASE-NOTES.txt   | 2 +-
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-build-plugin/blob/753d0855/RELEASE-NOTES.txt
--
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 37f885e..c52706d 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -10,7 +10,7 @@ See:
http://commons.apache.org/commons-build-plugin/
 
 
-VERSION 1.9 - 2018-05-DD
+VERSION 1.9 - 2018-06-16
 
 
 Changes since the last release:

http://git-wip-us.apache.org/repos/asf/commons-build-plugin/blob/753d0855/pom.xml
--
diff --git a/pom.xml b/pom.xml
index ca77fed..ef7abe7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   
   commons-build-plugin
   maven-plugin
-  1.9-SNAPSHOT
+  1.9
   Apache Commons Build Plugin Maven Mojo
   
 Apache Maven Mojo for Apache Commons Build tasks.

http://git-wip-us.apache.org/repos/asf/commons-build-plugin/blob/753d0855/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 3b89678..496cb77 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -25,7 +25,7 @@
   
 
   
-
+
   
 Fix in src/main/resources/commons-xdoc-templates/readme-md-template.md 
for components that have a major version number in their artifact IDs.