[commons-numbers] branch fraction-dev updated: NUMBERS-74: minor: removed unneeded variable

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

ericbarnhill pushed a commit to branch fraction-dev
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/fraction-dev by this push:
 new 8de7ce2  NUMBERS-74: minor: removed unneeded variable
8de7ce2 is described below

commit 8de7ce20fb18291889d74d26349a9a777ca91ee6
Author: Eric Barnhill 
AuthorDate: Tue Feb 26 16:20:07 2019 -0800

NUMBERS-74: minor: removed unneeded variable
---
 .../src/main/java/org/apache/commons/numbers/fraction/Fraction.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
index 2e2a408..b35b23a 100644
--- 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
+++ 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
@@ -642,7 +642,6 @@ public class Fraction
  * conform to the specification.
  */
 public static Fraction parse(String s) {
-final int len = s.length();
 final int slashLoc = s.indexOf("/");
 // if no slash, parse as single number
 if (slashLoc == -1) {



[commons-numbers] branch fraction-dev updated: NUMBERS-74: minor: changed exception listed in doc

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

ericbarnhill pushed a commit to branch fraction-dev
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/fraction-dev by this push:
 new 517df33  NUMBERS-74: minor: changed exception listed in doc
517df33 is described below

commit 517df3324cd978cd7fbfb30de0bec9a474f2918f
Author: Eric Barnhill 
AuthorDate: Tue Feb 26 16:17:53 2019 -0800

NUMBERS-74: minor: changed exception listed in doc
---
 .../src/main/java/org/apache/commons/numbers/fraction/Fraction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
index 12f6e20..2e2a408 100644
--- 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
+++ 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
@@ -638,7 +638,7 @@ public class Fraction
  *
  * @param s String representation.
  * @return an instance.
- * @throws IllegalArgumentException if the string does not
+ * @throws FractionException if the string does not
  * conform to the specification.
  */
 public static Fraction parse(String s) {



[commons-numbers] branch fraction-dev updated: NUMBERS_74: minor: added a trim method to parsing single integer

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

ericbarnhill pushed a commit to branch fraction-dev
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/fraction-dev by this push:
 new 99cbe29  NUMBERS_74: minor: added a trim method to parsing single 
integer
99cbe29 is described below

commit 99cbe29f9ec569397235cf4c78ef05a1eec2d1ae
Author: Eric Barnhill 
AuthorDate: Tue Feb 26 16:16:34 2019 -0800

NUMBERS_74: minor: added a trim method to parsing single integer
---
 .../src/main/java/org/apache/commons/numbers/fraction/Fraction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
index 0e3d76f..12f6e20 100644
--- 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
+++ 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
@@ -646,7 +646,7 @@ public class Fraction
 final int slashLoc = s.indexOf("/");
 // if no slash, parse as single number
 if (slashLoc == -1) {
-   return Fraction.of(Integer.parseInt(s));
+   return Fraction.of(Integer.parseInt(s.trim()));
 } else {
final int num = Integer.parseInt(s.substring(0, 
slashLoc).trim());
 final int denom = Integer.parseInt(s.substring(slashLoc + 
1).trim());



[commons-numbers] branch fraction-dev updated: NUMBERS-74: added parse() method to Fraction

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

ericbarnhill pushed a commit to branch fraction-dev
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/fraction-dev by this push:
 new 9a4792c  NUMBERS-74: added parse() method to Fraction
9a4792c is described below

commit 9a4792cc1cd265d12dde033ac818ef3dea5de816
Author: Eric Barnhill 
AuthorDate: Tue Feb 26 16:14:16 2019 -0800

NUMBERS-74: added parse() method to Fraction
---
 .../apache/commons/numbers/fraction/Fraction.java  | 24 ++
 1 file changed, 24 insertions(+)

diff --git 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
index 2ec1559..0e3d76f 100644
--- 
a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
+++ 
b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/Fraction.java
@@ -17,6 +17,7 @@
 package org.apache.commons.numbers.fraction;
 
 import java.io.Serializable;
+
 import org.apache.commons.numbers.core.ArithmeticUtils;
 import org.apache.commons.numbers.core.NativeOperators;
 
@@ -630,4 +631,27 @@ public class Fraction
 }
 return str;
 }
+
+/**
+ * Parses a string that would be produced by {@link #toString()}
+ * and instantiates the corresponding object.
+ *
+ * @param s String representation.
+ * @return an instance.
+ * @throws IllegalArgumentException if the string does not
+ * conform to the specification.
+ */
+public static Fraction parse(String s) {
+final int len = s.length();
+final int slashLoc = s.indexOf("/");
+// if no slash, parse as single number
+if (slashLoc == -1) {
+   return Fraction.of(Integer.parseInt(s));
+} else {
+   final int num = Integer.parseInt(s.substring(0, 
slashLoc).trim());
+final int denom = Integer.parseInt(s.substring(slashLoc + 
1).trim());
+return of(num, denom);
+}
+}
+
 }
\ No newline at end of file



[commons-crypto] branch master updated: JNA version is updated to 4.4.0 (#93)

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 7b7a36d  JNA version is updated to 4.4.0 (#93)
7b7a36d is described below

commit 7b7a36d603ad943ac033469b1e889946c947a385
Author: ossdev07 <39188636+ossde...@users.noreply.github.com>
AuthorDate: Tue Feb 26 23:18:42 2019 +0530

JNA version is updated to 4.4.0 (#93)

jvm is getting crashed patch on AARCH64 platform
(CentOS7) with openJDK8 with JNA version 4.2.2
and working fine with JNA 4.4.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index bb930ec..e43674d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -116,7 +116,7 @@ The following provides more details on the included 
cryptographic software:
 1.0.0
 (Requires Java ${maven.compiler.target} or 
later)
 RC1
-4.2.2
+4.4.0
 
 
 CRYPTO



[commons-rng] branch master updated: Fix UnitSphereSampler test coverage.

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 0cf148a  Fix UnitSphereSampler test coverage.
0cf148a is described below

commit 0cf148a8e692eee719d8250bfe17a2de3afe4788
Author: aherbert 
AuthorDate: Tue Feb 26 15:12:01 2019 +

Fix UnitSphereSampler test coverage.
---
 .../commons/rng/sampling/UnitSphereSamplerTest.java  | 16 
 1 file changed, 16 insertions(+)

diff --git 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/UnitSphereSamplerTest.java
 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/UnitSphereSamplerTest.java
index fb4ac08..5d32105 100644
--- 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/UnitSphereSamplerTest.java
+++ 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/UnitSphereSamplerTest.java
@@ -20,6 +20,7 @@ import org.junit.Assert;
 import org.junit.Test;
 import org.apache.commons.rng.simple.RandomSource;
 import org.apache.commons.rng.UniformRandomProvider;
+import org.apache.commons.rng.core.source64.SplitMix64;
 
 /**
  * Test for {@link UnitSphereSampler}.
@@ -79,6 +80,21 @@ public class UnitSphereSamplerTest {
 new UnitSphereSampler(1, bad).nextVector();
 }
 
+/** Cf. RNG-55. */
+@Test
+public void testBadProvider1ThenGoodProvider() {
+// Create a provider that will create a bad first sample but then 
recover.
+// This checks recursion will return a good value.
+final UniformRandomProvider bad = new SplitMix64(0L) {
+int count;
+public long nextLong() { return (count++ == 0) ? 0 : 
super.nextLong(); }
+public double nextDouble() { return (count++ == 0) ? 0 : 
super.nextDouble(); }
+};
+
+final double[] vector = new UnitSphereSampler(1, bad).nextVector();
+Assert.assertEquals(1, vector.length);
+}
+
 /**
  * @return the length (L2-norm) of given vector.
  */



[commons-rng] branch master updated: DiscreteProbabilityCollectionSamplerTest: Fix test for last item.

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 5aed399  DiscreteProbabilityCollectionSamplerTest: Fix test for last 
item.
5aed399 is described below

commit 5aed399de0aa2acce13ee74479ef2b6f5e4f4cff
Author: aherbert 
AuthorDate: Tue Feb 26 15:04:41 2019 +

DiscreteProbabilityCollectionSamplerTest: Fix test for last item.

The last item order depends on the entry set of the Map. This can change
so fix the test to handle this.
---
 .../DiscreteProbabilityCollectionSamplerTest.java  | 53 --
 1 file changed, 29 insertions(+), 24 deletions(-)

diff --git 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
index 92a7412..b02bde5 100644
--- 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
+++ 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
@@ -100,7 +100,6 @@ public class DiscreteProbabilityCollectionSamplerTest {
 Assert.assertEquals(expectedVariance, variance, 2e-3);
 }
 
-
 /**
  * Edge-case test:
  * Create a sampler that will return 1 for nextDouble() forcing the binary 
search to
@@ -108,20 +107,7 @@ public class DiscreteProbabilityCollectionSamplerTest {
  */
 @Test
 public void testSampleWithProbabilityAtLastItem() {
-final List list = Arrays.asList(new Double[] {1d, 2d});
-UniformRandomProvider dummyRng = new SplitMix64(0L) {
-@Override
-public double nextDouble() {
-return 1;
-}
-};
-
-final DiscreteProbabilityCollectionSampler sampler =
-new DiscreteProbabilityCollectionSampler(dummyRng,
- list,
- new double[] 
{0.5, 0.5});
-final Double item = sampler.sample();
-Assert.assertEquals(list.get(list.size() - 1), item);
+sampleWithProbabilityForLastItem(false);
 }
 
 /**
@@ -131,19 +117,38 @@ public class DiscreteProbabilityCollectionSamplerTest {
  */
 @Test
 public void testSampleWithProbabilityPastLastItem() {
-final List list = Arrays.asList(new Double[] {1d, 2d});
-UniformRandomProvider dummyRng = new SplitMix64(0L) {
-@Override
-public double nextDouble() {
-return 1.1;
-}
+sampleWithProbabilityForLastItem(true);
+}
+
+private static void sampleWithProbabilityForLastItem(boolean pastLast) {
+// Ensure the samples pick probability 0 (the first item) and then
+// a probability (for the second item) that hits an edge case.
+final double probability = pastLast ? 1.1 : 1;
+final UniformRandomProvider dummyRng = new UniformRandomProvider() {
+int count;
+public long nextLong(long n) { return 0; }
+public long nextLong() { return 0; }
+public int nextInt(int n) { return 0; }
+public int nextInt() { return 0; }
+public float nextFloat() { return 0; }
+// Return 0 then the given probability
+public double nextDouble() { return (count++ == 0) ? 0 : 
probability; }
+public void nextBytes(byte[] bytes, int start, int len) {}
+public void nextBytes(byte[] bytes) {}
+public boolean nextBoolean() { return false; }
 };
 
+final List items = Arrays.asList(new Double[] {1d, 2d});
 final DiscreteProbabilityCollectionSampler sampler =
 new DiscreteProbabilityCollectionSampler(dummyRng,
- list,
+ items,
  new double[] 
{0.5, 0.5});
-final Double item = sampler.sample();
-Assert.assertEquals(list.get(list.size() - 1), item);
+final Double item1 = sampler.sample();
+final Double item2 = sampler.sample();
+// Check they are in the list
+Assert.assertTrue("Sample item1 is not from the list", 
items.contains(item1));
+Assert.assertTrue("Sample item2 is not from the list", 
items.contains(item2));
+// Test the two samples are different items
+Assert.assertNotSame("Item1 and 2 should be different", item1, item2);
 }
 }



[commons-release-plugin] branch master updated: Use GitBox instead of GutHub for source reference.

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 3872644  Use GitBox instead of GutHub for source reference.
3872644 is described below

commit 38726445b59cc078a776981b220ad6c95fec7177
Author: Gary Gregory 
AuthorDate: Tue Feb 26 09:09:43 2019 -0500

Use GitBox instead of GutHub for source reference.
---
 src/main/resources/commons-xdoc-templates/vote-txt-template.txt | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt 
b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
index c9ede7a..8f9a6ae 100755
--- a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
+++ b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
@@ -32,9 +32,7 @@ The Subversion tag for this RC is here:
 The Git tag @TAGNAME@ commit for this RC is @TAGCOMMIT@ which you can browse 
here:
 
https://gitbox.apache.org/repos/asf?p=commons-@ID@.git;a=commit;h=@TAGCOMMIT@
 You may checkout this tag using:
-  git clone https://gitbox.apache.org/repos/asf/commons-@ID@.git
-  cd commons-@ID@
-  git checkout tags/@TAGNAME@
+git clone https://gitbox.apache.org/repos/asf/commons-@ID@.git --branch 
@TAGNAME@
 
 Maven artifacts are here:
 
https://repository.apache.org/content/repositories/orgapachecommons-@NEXUS_REPO_ID@/org/apache/commons/@ARTIFACTID@/@VERSION@/



[commons-release-plugin] branch master updated: Use GitBox instead of GutHub for source reference.

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 2929de0  Use GitBox instead of GutHub for source reference.
2929de0 is described below

commit 2929de09e7ab18daa3a3bf65f02ea4ac72fae466
Author: Gary Gregory 
AuthorDate: Tue Feb 26 09:03:46 2019 -0500

Use GitBox instead of GutHub for source reference.
---
 src/main/resources/commons-xdoc-templates/vote-txt-template.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt 
b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
index a6da79a..c9ede7a 100755
--- a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
+++ b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
@@ -31,7 +31,7 @@ The Subversion tag for this RC is here:
 *** Git: ***
 The Git tag @TAGNAME@ commit for this RC is @TAGCOMMIT@ which you can browse 
here:
 
https://gitbox.apache.org/repos/asf?p=commons-@ID@.git;a=commit;h=@TAGCOMMIT@
-You may checkout this tag like this:
+You may checkout this tag using:
   git clone https://gitbox.apache.org/repos/asf/commons-@ID@.git
   cd commons-@ID@
   git checkout tags/@TAGNAME@



[commons-release-plugin] branch master updated: Use GitBox instead of GutHub for source reference.

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

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


The following commit(s) were added to refs/heads/master by this push:
 new fcca5f0  Use GitBox instead of GutHub for source reference.
fcca5f0 is described below

commit fcca5f016924ce6e7fe6d8da47420d16346a1d4b
Author: Gary Gregory 
AuthorDate: Tue Feb 26 09:03:17 2019 -0500

Use GitBox instead of GutHub for source reference.
---
 src/main/resources/commons-xdoc-templates/vote-txt-template.txt | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt 
b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
index 452d154..a6da79a 100755
--- a/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
+++ b/src/main/resources/commons-xdoc-templates/vote-txt-template.txt
@@ -30,7 +30,11 @@ The Subversion tag for this RC is here:
 N.B. the SVN revision is required because SVN tags are not immutable.
 *** Git: ***
 The Git tag @TAGNAME@ commit for this RC is @TAGCOMMIT@ which you can browse 
here:
-https://github.com/apache/commons-@ID@/releases/tag/@TAGNAME@
+
https://gitbox.apache.org/repos/asf?p=commons-@ID@.git;a=commit;h=@TAGCOMMIT@
+You may checkout this tag like this:
+  git clone https://gitbox.apache.org/repos/asf/commons-@ID@.git
+  cd commons-@ID@
+  git checkout tags/@TAGNAME@
 
 Maven artifacts are here:
 
https://repository.apache.org/content/repositories/orgapachecommons-@NEXUS_REPO_ID@/org/apache/commons/@ARTIFACTID@/@VERSION@/



[commons-rng] branch master updated: Document preconditions

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

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


The following commit(s) were added to refs/heads/master by this push:
 new c97825f  Document preconditions
c97825f is described below

commit c97825f6afde2692282b41542e024d100c5af237
Author: aherbert 
AuthorDate: Tue Feb 26 13:54:20 2019 +

Document preconditions
---
 .../rng/sampling/DiscreteProbabilityCollectionSamplerTest.java| 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
index 0df63c6..92a7412 100644
--- 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
+++ 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
@@ -36,36 +36,42 @@ public class DiscreteProbabilityCollectionSamplerTest {
 
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition1() {
+// Size mismatch
 new DiscreteProbabilityCollectionSampler(rng,
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d});
 }
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition2() {
+// Negative probability
 new DiscreteProbabilityCollectionSampler(rng,
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d, 
-1d});
 }
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition3() {
+// Probabilities do not sum above 0
 new DiscreteProbabilityCollectionSampler(rng,
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d, 
0d});
 }
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition4() {
+// NaN probability
 new DiscreteProbabilityCollectionSampler(rng,
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d, 
Double.NaN});
 }
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition5() {
+// Infinite probability
 new DiscreteProbabilityCollectionSampler(rng,
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d, 
Double.POSITIVE_INFINITY});
 }
 @Test(expected=IllegalArgumentException.class)
 public void testPrecondition6() {
+// Empty Map not allowed
 new DiscreteProbabilityCollectionSampler(rng,
  new 
HashMap());
 }
@@ -121,7 +127,7 @@ public class DiscreteProbabilityCollectionSamplerTest {
 /**
  * Edge-case test:
  * Create a sampler that will return over 1 for nextDouble() forcing the 
binary search to
- * identify insertion at the end of the cumulative probability array
+ * identify insertion at the end of the cumulative probability array.
  */
 @Test
 public void testSampleWithProbabilityPastLastItem() {



[commons-rng] 01/02: DiscreteProbabilityCollectionSampler: Fix index check from binarySearch.

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

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

commit 89ee371d557fc339cc76a91540e870b7e2de4750
Author: aherbert 
AuthorDate: Tue Feb 26 13:14:36 2019 +

DiscreteProbabilityCollectionSampler: Fix index check from binarySearch.

The index cannot be negative after the conversion. -Integer.MIN_VALUE -1
= Integer.MAX_VALUE due to underflow.
---
 .../commons/rng/sampling/DiscreteProbabilityCollectionSampler.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSampler.java
 
b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSampler.java
index 8c77da0..f85ff14 100644
--- 
a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSampler.java
+++ 
b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSampler.java
@@ -135,8 +135,7 @@ public class DiscreteProbabilityCollectionSampler {
 index = -index - 1;
 }
 
-if (index >= 0 &&
-index < cumulativeProbabilities.length &&
+if (index < cumulativeProbabilities.length &&
 rand < cumulativeProbabilities[index]) {
 return items.get(index);
 }



[commons-rng] 02/02: Fix test coverage of DiscreteProbabilityCollectionSampler.

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

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

commit acda087dfb76cbc359c1fe74f3397aed52674562
Author: aherbert 
AuthorDate: Tue Feb 26 13:46:07 2019 +

Fix test coverage of DiscreteProbabilityCollectionSampler.
---
 .../DiscreteProbabilityCollectionSamplerTest.java  | 56 ++
 1 file changed, 56 insertions(+)

diff --git 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
index 5fb7f77..0df63c6 100644
--- 
a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
+++ 
b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/DiscreteProbabilityCollectionSamplerTest.java
@@ -18,9 +18,13 @@
 package org.apache.commons.rng.sampling;
 
 import java.util.Arrays;
+import java.util.HashMap;
+import java.util.List;
+
 import org.junit.Assert;
 import org.junit.Test;
 import org.apache.commons.rng.UniformRandomProvider;
+import org.apache.commons.rng.core.source64.SplitMix64;
 import org.apache.commons.rng.simple.RandomSource;
 
 /**
@@ -60,6 +64,11 @@ public class DiscreteProbabilityCollectionSamplerTest {
  Arrays.asList(new 
Double[] {1d, 2d}),
  new double[] {0d, 
Double.POSITIVE_INFINITY});
 }
+@Test(expected=IllegalArgumentException.class)
+public void testPrecondition6() {
+new DiscreteProbabilityCollectionSampler(rng,
+ new 
HashMap());
+}
 
 @Test
 public void testSample() {
@@ -84,4 +93,51 @@ public class DiscreteProbabilityCollectionSamplerTest {
 final double variance = sumOfSquares / n - mean * mean;
 Assert.assertEquals(expectedVariance, variance, 2e-3);
 }
+
+
+/**
+ * Edge-case test:
+ * Create a sampler that will return 1 for nextDouble() forcing the binary 
search to
+ * identify the end item of the cumulative probability array.
+ */
+@Test
+public void testSampleWithProbabilityAtLastItem() {
+final List list = Arrays.asList(new Double[] {1d, 2d});
+UniformRandomProvider dummyRng = new SplitMix64(0L) {
+@Override
+public double nextDouble() {
+return 1;
+}
+};
+
+final DiscreteProbabilityCollectionSampler sampler =
+new DiscreteProbabilityCollectionSampler(dummyRng,
+ list,
+ new double[] 
{0.5, 0.5});
+final Double item = sampler.sample();
+Assert.assertEquals(list.get(list.size() - 1), item);
+}
+
+/**
+ * Edge-case test:
+ * Create a sampler that will return over 1 for nextDouble() forcing the 
binary search to
+ * identify insertion at the end of the cumulative probability array
+ */
+@Test
+public void testSampleWithProbabilityPastLastItem() {
+final List list = Arrays.asList(new Double[] {1d, 2d});
+UniformRandomProvider dummyRng = new SplitMix64(0L) {
+@Override
+public double nextDouble() {
+return 1.1;
+}
+};
+
+final DiscreteProbabilityCollectionSampler sampler =
+new DiscreteProbabilityCollectionSampler(dummyRng,
+ list,
+ new double[] 
{0.5, 0.5});
+final Double item = sampler.sample();
+Assert.assertEquals(list.get(list.size() - 1), item);
+}
 }



[commons-rng] branch master updated (dc0786b -> acda087)

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

aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git.


from dc0786b  Merge branch 'aherbert-feature-RNG-72'
 new 89ee371  DiscreteProbabilityCollectionSampler: Fix index check from 
binarySearch.
 new acda087  Fix test coverage of DiscreteProbabilityCollectionSampler.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../DiscreteProbabilityCollectionSampler.java  |  3 +-
 .../DiscreteProbabilityCollectionSamplerTest.java  | 56 ++
 2 files changed, 57 insertions(+), 2 deletions(-)



Nexus: Staging Completed

2019-02-26 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:commons-build-plugin-1.10-RC1Deployer properties:"userAgent" = "Apache-Maven/3.6.0 (Java 1.8.0_191; Mac OS X 10.14.3)""userId" = "chtompki""ip" = "107.77.203.173"Details:The following artifacts have been staged/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar.asc(SHA1: 5d7ef664ebcb8ee8244a7f4b3935e787f7842b0e)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar(SHA1: 618592e98f5d2e295e2042f5a8fa1ac370b1d7f8)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar.asc.asc(SHA1: 2d146796e87ce5da96e0aeba78258b2da727e492)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar(SHA1: ebac3ddb1c291c641fc037b897666f95b453d1d9)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar.asc.asc(SHA1: 6cd76724f7f9f5066149eda4d7888168e7e73b52)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar.asc.asc(SHA1: dc8287752e8d35ee8de4a842fa19ec80ef93cba6)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar.asc(SHA1: 59a53ccee531d78b833a76ae7c2dfa04448e55e0)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom(SHA1: e5a0589d8d2ef5b32afbf9ec53d02a9dc2a237e6)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar.asc(SHA1: 57c67f80d31608f2a1c785159c28c7b93eb86e64)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom.asc.asc(SHA1: 1a869cea3e7341392f79a770eb9ea05138279e55)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar.asc.asc(SHA1: 7bd49d09f59aed021fdf4bdb1296106d6baf3eb9)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar(SHA1: a2fc34de3f2024db0ae1361b293fdba68cfed18e)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar(SHA1: cc89ae68a831683df1014f8819ebb6b34aa1a65a)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar.asc(SHA1: f99d8d407654a58c72c1b166a477d875284c110c)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar(SHA1: 01d9b1d19331a4eac30244819be3ae2ce20f6f67)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar.asc(SHA1: ea883571ea89e74871011ef2ceacf6ff3cccb5c9)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom.asc(SHA1: ae6a60447d89cf57e37a5f57dd1025ca1b72a8fc)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar.asc.asc(SHA1: b05a1eee0659745f1a8fa23cf1150eadffb832d4)Action performed by Rob Tompkins (chtompki)

svn commit: r32647 [15/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html Tue Feb 26 
13:10:56 2019
@@ -0,0 +1,390 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Generating README.md
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [9/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html Tue Feb 
26 13:10:56 2019
@@ -0,0 +1,385 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [8/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
==
--- 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
 (added)
+++ 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
 Tue Feb 26 13:10:56 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [3/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html
==
--- 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html 
(added)
+++ 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html 
Tue Feb 26 13:10:56 2019
@@ -0,0 +1,345 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Copy NOTICE and LICENSE files to 
javadoc jar
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [1/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Author: chtompki
Date: Tue Feb 26 13:10:56 2019
New Revision: 32647

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

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

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

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

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

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

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

svn commit: r32647 [12/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js Tue Feb 26 
13:10:56 2019
@@ -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: r32647 [6/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html 
(added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html 
Tue Feb 26 13:10:56 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [14/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html Tue Feb 26 
13:10:56 2019
@@ -0,0 +1,400 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Information
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [11/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js Tue Feb 26 
13:10:56 2019
@@ -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: r32647 [13/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html Tue Feb 26 
13:10:56 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [5/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html Tue Feb 26 
13:10:56 2019
@@ -0,0 +1,1757 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [4/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css Tue Feb 
26 13:10:56 2019
@@ -0,0 +1,926 @@
+/*
+ * 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$ */
+
+body {
+ background: #fff;
+ color: #000;
+  padding: 0px 0px 10px 0px;
+ }
+
+h2 {
+ background-color: #036;
+ }
+
+h3 {
+ background-color: #888;
+ }
+
+.a td { 
+ background: #ddd;
+ color: #000;
+ }
+
+.b td { 
+ background: #efefef;
+ color: #000;
+ }
+
+th {
+ background-color: #bbb;
+ color: #fff;
+ }
+
+div#banner {
+ border-bottom: 1px solid #fff;
+ }
+
+#banner, #banner td { 
+ background: #fff;
+ color: #fff;
+ }
+
+#banner {
+  border-bottom: 1px solid #fff;
+}
+
+#leftColumn {
+ background-color: #eee;
+ color: #000;
+ border-right: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+ border-top: 1px solid #fff;
+}
+
+#navcolumn {
+ color: #000;
+ border-right: none;
+ border-bottom: none;
+ border-top: none;
+}
+
+#navcolumn h5 {
+  font-size: inherit;
+  border-bottom: 1px solid #aaa;
+}
+
+#navcolumn li strong {
+  color: #369;
+}
+
+#breadcrumbs {
+ background-color: #ccc;
+ color: #000;
+ border-top: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+}
+
+.source {
+ background-color: #fff;
+ color: #000;
+ border-right: 1px solid #888; 
+ border-left: 1px solid #888; 
+ border-top: 1px solid #888; 
+ border-bottom: 1px solid #888; 
+ margin-right: 7px;
+ margin-left: 7px;
+ margin-top: 1em;
+ }
+
+.source pre {
+ margin-right: 7px;
+ margin-left: 7px;
+ }
+
+a[name]:hover, #leftColumn a[name]:hover {
+ color: inherit !important;
+ }
+
+#breadcrumbs a:link, #navcolumn a:link {
+ color: #36a;
+}
+
+#breadcrumbs a:visited, #navcolumn a:visited, .contentBox a:visited, .tasknav 
a:visited {
+ color: #47a;
+}
+
+a:active, a:hover, #leftColumn a:active, #leftColumn a:hover {
+ color: #f30 !important;
+ }
+
+a:link.selfref, a:visited.selfref {
+ color: #555 !important;
+ }
+
+#legend li.externalLink {
+  background: url(../images/external-classic.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited, 
a.externalLink:active, a.externalLink:hover {
+  background: url(../images/external-classic.png) right center no-repeat;
+  padding-right: 18px;
+}
+
+#legend li.newWindow {
+  background: url(../images/newwindow-classic.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, 
a.newWindow:hover {
+  background: url(../images/newwindow-classic.png) right center no-repeat;
+  padding-right: 18px;
+}
+
+h2, h3 {
+ margin-top: 1em;
+ margin-bottom: 0;
+ background-image: url(../images/nw_maj_rond.gif);
+ background-repeat: no-repeat;
+ color: #fff;
+ padding: 5px;
+ margin-right: 2px;
+}
+
+img.handle {
+ border: 0;
+ padding-right: 2px;
+}
+
+#navcolumn div div  {
+ background-image: none;
+ background-repeat: no-repeat;
+}
+
+#navcolumn div div {
+  padding-left: 10px;
+}
+
+.functnbar, .functnbar2 {
+  background-color: #aaa;
+}
+
+.functnbar2, .functnbar3 {
+  background-color: #aaa;
+  background-image: url(../images/sw_maj_rond.gif);
+  background-repeat: no-repeat;
+  background-position: bottom left;
+}
+
+.functnbar3 {
+  background-color: #ddd;
+  background-image: url(../images/sw_med_rond.gif);
+}
+
+.functnbar, .functnbar2, .functnbar3 {
+  color: #000;
+}
+
+.functnbar a, .functnbar2 a, .functnbar3 a {
+  color: #000;
+  text-decoration: underline;
+}
+
+#navcolumn .body div, body.docs #toc li li {
+  background-image: url(../images/strich.gif);
+  background-repeat: no-repeat;
+  background-position: .5em .5em;
+}
+
+#searchbox .body div, #navcolumn .body .heading {
+  background-image: none;
+}
+
+a:link.selfref, a:visited.selfref {
+  text-decoration: none;
+}
+
+#leftColumn a, #breadcrumbs a {
+  text-decoration: none;
+}
+
+/* Unsure of this. TODO */
+.contentBox h2 a:link, .contentBox h2 a:visited, .contentBox h3 a:link, 
.contentBox h3 a:visited {
+  color: #fff !important;
+  text-decoration: 

svn commit: r32647 [10/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html Tue Feb 26 
13:10:56 2019
@@ -0,0 +1,842 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [2/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html Tue Feb 
26 13:10:56 2019
@@ -0,0 +1,494 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [7/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html 
(added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html 
Tue Feb 26 13:10:56 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32647 [16/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/summary.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/summary.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/summary.html Tue Feb 26 
13:10:56 2019
@@ -0,0 +1,408 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Summary
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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" 

[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 updated (0b77196 -> aa0dd6a)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was modified! ***

from 0b77196  (commit)
  to aa0dd6a  (tag)
 tagging 0b7719609cb5466e2171942efbe05d3a5b38fc09 (commit)
 replaces commons-build-plugin-1.9
  by Rob Tompkins
  on Tue Feb 26 08:05:47 2019 -0500

- Log -
Tagging commons-build-plugin-1.10-RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlx1OasACgkQP6rSzV7L
sxQM2BAAizKld/q1X0w5YWnXfHYIEfgYbdjV4njgpvtVxDVJjFt4YZjMFkLwlb3B
L2SlYXF9nm5wEFQ30t9mZDm6IwKsJVApbTzyTbWXXLJvF+ueDFAM1xnxj1TCgYdM
2o88Awq7xUdMlH0LAbi5EycjfhNORp2nhwtmJMzlMH7+hwVAeWGKumLRTrw624pS
nkxYnDQauLPOznN3NU+tZqaZXtSBPvcCsysYVDyWfQxPp0Yvn43pys+KT7mV/BYy
5+dcwYFPuor8pqS9uM7PzvNWYABY6R67WzTLr5+SIxtp8Nq8InfjzSqihBxSq5AX
LLFLenZMz91TAFP+VTK+qygi5354dY++m3BoMRXtHABv1URmhXBoU6dDLAJaAcdQ
q6OvijLRX3sxrBeMQDOTIEDW6PZIjixTGE2ChlnfR5hTUEOqmXvtN8Fn5jicdOUm
djpuw/61HKK6NUq8BUnQFBHUDATU8MzBAoKJyJwZusbU5GK92mLF5arMrrzcdI+/
XM0Mc63r4cchu2LEk/0+nYy5hTzrLJ8jCtnOLXzSbGyGL9qmKEgBaw4LK/j+anZH
BVGfl4qU+ipXR/JWLUlD5R0qzy6wPrT0oNTFFTsdPPzqw8piLBYrwnRmUcQXuXcL
PvGOLH+ZVkLNPH4Yj+4tlTwW9jRFLRKVxyXEuDM5rq1revxiJcU=
=LHNF
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 updated (0b77196 -> aa0dd6a)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was modified! ***

from 0b77196  (commit)
  to aa0dd6a  (tag)
 tagging 0b7719609cb5466e2171942efbe05d3a5b38fc09 (commit)
 replaces commons-build-plugin-1.9
  by Rob Tompkins
  on Tue Feb 26 08:05:47 2019 -0500

- Log -
Tagging commons-build-plugin-1.10-RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlx1OasACgkQP6rSzV7L
sxQM2BAAizKld/q1X0w5YWnXfHYIEfgYbdjV4njgpvtVxDVJjFt4YZjMFkLwlb3B
L2SlYXF9nm5wEFQ30t9mZDm6IwKsJVApbTzyTbWXXLJvF+ueDFAM1xnxj1TCgYdM
2o88Awq7xUdMlH0LAbi5EycjfhNORp2nhwtmJMzlMH7+hwVAeWGKumLRTrw624pS
nkxYnDQauLPOznN3NU+tZqaZXtSBPvcCsysYVDyWfQxPp0Yvn43pys+KT7mV/BYy
5+dcwYFPuor8pqS9uM7PzvNWYABY6R67WzTLr5+SIxtp8Nq8InfjzSqihBxSq5AX
LLFLenZMz91TAFP+VTK+qygi5354dY++m3BoMRXtHABv1URmhXBoU6dDLAJaAcdQ
q6OvijLRX3sxrBeMQDOTIEDW6PZIjixTGE2ChlnfR5hTUEOqmXvtN8Fn5jicdOUm
djpuw/61HKK6NUq8BUnQFBHUDATU8MzBAoKJyJwZusbU5GK92mLF5arMrrzcdI+/
XM0Mc63r4cchu2LEk/0+nYy5hTzrLJ8jCtnOLXzSbGyGL9qmKEgBaw4LK/j+anZH
BVGfl4qU+ipXR/JWLUlD5R0qzy6wPrT0oNTFFTsdPPzqw8piLBYrwnRmUcQXuXcL
PvGOLH+ZVkLNPH4Yj+4tlTwW9jRFLRKVxyXEuDM5rq1revxiJcU=
=LHNF
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 deleted (was 64b2bc6)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was deleted! ***

   tag was  64b2bc6

This change permanently discards the following revisions:

 discard f76cdca  Preparing 1.10 release
 discard c9d4c67  (update) prepare more versions for 1.10 release
 discard 7379822  (updates) version numbers and RELEASE-NOTES.txt



[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 deleted (was 64b2bc6)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was deleted! ***

   tag was  64b2bc6

This change permanently discards the following revisions:

 discard f76cdca  Preparing 1.10 release
 discard c9d4c67  (update) prepare more versions for 1.10 release
 discard 7379822  (updates) version numbers and RELEASE-NOTES.txt



svn commit: r32646 - /dev/commons/commons-build-plugin/1.10-RC1/

2019-02-26 Thread chtompki
Author: chtompki
Date: Tue Feb 26 13:01:41 2019
New Revision: 32646

Log:
Unstaing 1.10, messed up RELEASE-NOTES.txt

Removed:
dev/commons/commons-build-plugin/1.10-RC1/



Nexus: Staging Repository Dropped

2019-02-26 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Bad release notes. Doh.Deployer properties:"userAgent" = "Apache-Maven/3.6.0 (Java 1.8.0_191; Mac OS X 10.14.3)""userId" = "chtompki""ip" = "107.77.203.173"Details:The orgapachecommons-1426 staging repository has been dropped.Action performed by Rob Tompkins (chtompki)

Nexus: Staging Completed

2019-02-26 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:commons-build-plugin-1.10-RC1Deployer properties:"userAgent" = "Apache-Maven/3.6.0 (Java 1.8.0_191; Mac OS X 10.14.3)""userId" = "chtompki""ip" = "107.77.203.173"Details:The following artifacts have been staged/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar.asc(SHA1: 69496cdb1ed61b0795bafd471cf33eb576d9614a)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar(SHA1: 7784e6c137831330fa2bb718a0b6ec198936303b)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar.asc.asc(SHA1: 4d87396a0b255dc946cce4d2149a622f4b21fb40)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar(SHA1: e5a0ba103b8cb8a915b98fc365c1f7c830a3cdce)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar.asc.asc(SHA1: cc89f873c5b4c65b0d1982ad8d2a2b83650dbaa1)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar.asc.asc(SHA1: d483b93479663bcfbddcb0893c669ecb97bb95f0)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-tests.jar.asc(SHA1: e2e9806d459763353c1c608356c7ed916467831f)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom(SHA1: b09b67e0e699d492e1f55f1d00197fbff2bf775a)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-test-sources.jar.asc(SHA1: 70c7d29e42c1b21c42e818ef32cc145da6762b4d)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom.asc.asc(SHA1: 0fc0f374fdaf4097a2bb269c1c2685c7d5fc47ed)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar.asc.asc(SHA1: 204674d52360b02455bd2653907a4183357eefa4)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar(SHA1: 50148f2d8ad7debf0ce5743f8319d3939cc9a2dc)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar(SHA1: 12b46447f7246b75b6b20a460b091ebdb9c81f53)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-javadoc.jar.asc(SHA1: 9969874956e95b283fe306f3769f2fea4d97edc6)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar(SHA1: a2901bd700c9e4d1c4fef63e5db2fe4e9d82649f)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.jar.asc(SHA1: ff2e1736aabe0b5804db09808b6de769865a4656)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10.pom.asc(SHA1: 1ba6d281356c425b1b680b8dd3fd45018f8a5ab7)/org/apache/commons/commons-build-plugin/1.10/commons-build-plugin-1.10-sources.jar.asc.asc(SHA1: f3cb3899935e1a86e1959dcc514c9cc5072c3c5a)Action performed by Rob Tompkins (chtompki)

svn commit: r32645 [14/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/project-info.html Tue Feb 26 
12:53:47 2019
@@ -0,0 +1,412 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Information
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [15/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/readme-md.html Tue Feb 26 
12:53:47 2019
@@ -0,0 +1,390 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Generating README.md
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [10/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/jira-report.html Tue Feb 26 
12:53:47 2019
@@ -0,0 +1,842 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [12/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/js/prettify.js Tue Feb 26 
12:53:47 2019
@@ -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: r32645 [4/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/css/maven-theme.css Tue Feb 
26 12:53:47 2019
@@ -0,0 +1,926 @@
+/*
+ * 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$ */
+
+body {
+ background: #fff;
+ color: #000;
+  padding: 0px 0px 10px 0px;
+ }
+
+h2 {
+ background-color: #036;
+ }
+
+h3 {
+ background-color: #888;
+ }
+
+.a td { 
+ background: #ddd;
+ color: #000;
+ }
+
+.b td { 
+ background: #efefef;
+ color: #000;
+ }
+
+th {
+ background-color: #bbb;
+ color: #fff;
+ }
+
+div#banner {
+ border-bottom: 1px solid #fff;
+ }
+
+#banner, #banner td { 
+ background: #fff;
+ color: #fff;
+ }
+
+#banner {
+  border-bottom: 1px solid #fff;
+}
+
+#leftColumn {
+ background-color: #eee;
+ color: #000;
+ border-right: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+ border-top: 1px solid #fff;
+}
+
+#navcolumn {
+ color: #000;
+ border-right: none;
+ border-bottom: none;
+ border-top: none;
+}
+
+#navcolumn h5 {
+  font-size: inherit;
+  border-bottom: 1px solid #aaa;
+}
+
+#navcolumn li strong {
+  color: #369;
+}
+
+#breadcrumbs {
+ background-color: #ccc;
+ color: #000;
+ border-top: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+}
+
+.source {
+ background-color: #fff;
+ color: #000;
+ border-right: 1px solid #888; 
+ border-left: 1px solid #888; 
+ border-top: 1px solid #888; 
+ border-bottom: 1px solid #888; 
+ margin-right: 7px;
+ margin-left: 7px;
+ margin-top: 1em;
+ }
+
+.source pre {
+ margin-right: 7px;
+ margin-left: 7px;
+ }
+
+a[name]:hover, #leftColumn a[name]:hover {
+ color: inherit !important;
+ }
+
+#breadcrumbs a:link, #navcolumn a:link {
+ color: #36a;
+}
+
+#breadcrumbs a:visited, #navcolumn a:visited, .contentBox a:visited, .tasknav 
a:visited {
+ color: #47a;
+}
+
+a:active, a:hover, #leftColumn a:active, #leftColumn a:hover {
+ color: #f30 !important;
+ }
+
+a:link.selfref, a:visited.selfref {
+ color: #555 !important;
+ }
+
+#legend li.externalLink {
+  background: url(../images/external-classic.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited, 
a.externalLink:active, a.externalLink:hover {
+  background: url(../images/external-classic.png) right center no-repeat;
+  padding-right: 18px;
+}
+
+#legend li.newWindow {
+  background: url(../images/newwindow-classic.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, 
a.newWindow:hover {
+  background: url(../images/newwindow-classic.png) right center no-repeat;
+  padding-right: 18px;
+}
+
+h2, h3 {
+ margin-top: 1em;
+ margin-bottom: 0;
+ background-image: url(../images/nw_maj_rond.gif);
+ background-repeat: no-repeat;
+ color: #fff;
+ padding: 5px;
+ margin-right: 2px;
+}
+
+img.handle {
+ border: 0;
+ padding-right: 2px;
+}
+
+#navcolumn div div  {
+ background-image: none;
+ background-repeat: no-repeat;
+}
+
+#navcolumn div div {
+  padding-left: 10px;
+}
+
+.functnbar, .functnbar2 {
+  background-color: #aaa;
+}
+
+.functnbar2, .functnbar3 {
+  background-color: #aaa;
+  background-image: url(../images/sw_maj_rond.gif);
+  background-repeat: no-repeat;
+  background-position: bottom left;
+}
+
+.functnbar3 {
+  background-color: #ddd;
+  background-image: url(../images/sw_med_rond.gif);
+}
+
+.functnbar, .functnbar2, .functnbar3 {
+  color: #000;
+}
+
+.functnbar a, .functnbar2 a, .functnbar3 a {
+  color: #000;
+  text-decoration: underline;
+}
+
+#navcolumn .body div, body.docs #toc li li {
+  background-image: url(../images/strich.gif);
+  background-repeat: no-repeat;
+  background-position: .5em .5em;
+}
+
+#searchbox .body div, #navcolumn .body .heading {
+  background-image: none;
+}
+
+a:link.selfref, a:visited.selfref {
+  text-decoration: none;
+}
+
+#leftColumn a, #breadcrumbs a {
+  text-decoration: none;
+}
+
+/* Unsure of this. TODO */
+.contentBox h2 a:link, .contentBox h2 a:visited, .contentBox h3 a:link, 
.contentBox h3 a:visited {
+  color: #fff !important;
+  text-decoration: 

svn commit: r32645 [3/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html
==
--- 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html 
(added)
+++ 
dev/commons/commons-build-plugin/1.10-RC1/site/copy-javadoc-files-build.html 
Tue Feb 26 12:53:47 2019
@@ -0,0 +1,345 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+Commons Build Plugin  Copy NOTICE and LICENSE files to 
javadoc jar
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [7/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html 
(added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/distribution-management.html 
Tue Feb 26 12:53:47 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [16/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/summary.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/summary.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/summary.html Tue Feb 26 
12:53:47 2019
@@ -0,0 +1,420 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Commons Build Plugin  Project Summary
+
+  
+  
+
+
+  
+  
+  
+  
+
+  
+  
+
+  
+  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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [6/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html 
(added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/dependency-convergence.html 
Tue Feb 26 12:53:47 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [2/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/changes-report.html Tue Feb 
26 12:53:47 2019
@@ -0,0 +1,494 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [8/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
==
--- 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
 (added)
+++ 
dev/commons/commons-build-plugin/1.10-RC1/site/download_commons-build-plugin.html
 Tue Feb 26 12:53:47 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [9/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/issue-tracking.html Tue Feb 
26 12:53:47 2019
@@ -0,0 +1,385 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [1/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Author: chtompki
Date: Tue Feb 26 12:53:47 2019
New Revision: 32645

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

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

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

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

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

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

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

svn commit: r32645 [11/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/js/jquery.min.js Tue Feb 26 
12:53:47 2019
@@ -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: r32645 [5/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/dependencies.html Tue Feb 26 
12:53:47 2019
@@ -0,0 +1,1769 @@
+
+
+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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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: r32645 [13/16] - in /dev/commons/commons-build-plugin/1.10-RC1: ./ binaries/ site/ site/css/ site/images/ site/images/logos/ site/img/ site/js/ source/

2019-02-26 Thread chtompki
Added: dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html
==
--- dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html (added)
+++ dev/commons/commons-build-plugin/1.10-RC1/site/mail-page.html Tue Feb 26 
12:53:47 2019
@@ -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: 26 February 2019
+  | Version: 1.10
+  
+  
+
+  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
+  
+ 
+  

[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 updated (f76cdca -> 64b2bc6)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was modified! ***

from f76cdca  (commit)
  to 64b2bc6  (tag)
 tagging f76cdca60bac4e0cb94b5e8bd66b3d9630f6b980 (commit)
 replaces commons-build-plugin-1.9
  by Rob Tompkins
  on Tue Feb 26 07:50:53 2019 -0500

- Log -
Tagging commons-build-plugin-1.10-RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlx1Ni0ACgkQP6rSzV7L
sxQVGw/+LR6Ab3szFJgbyuBPJgLVkZwRfVPIfWhcdu976Tz3LQsIj7GUEDB6DVJ2
5fyBjElO7THr9e6O984ZssRCrw5LISt7X0q5RAc+bRnDyApYjBWd+WXdoRLhAp4t
6AJs0KCztQF6Aue8WPgrvRNcrSX9E6qvp0DkSxtdZ80szFwzf+NT5Iubzs/S5Mke
hdth+uWtzUA9fqe+c7DoL/+Htdh9/EBFEY1a5WOHjI3ett9zU8xHqeSFfropwSiK
vF+vQCYewTkB7EJhCwRrCMzhji8ATyxv/IygHwiAONnyvciC5yVAjwYVrmOXrzbA
QnfBmGOaVIULL5XnqAwWEzAmSCIQvlqFKUJcR3JOFiHI01Hc+3d6fNQduOfv7szh
WaZJxiEpeVggJndLEl00i3mTpODmun3jlGCRE3kxKElhN2NMqS0xStA14tCiUd73
I8Qwf8qfrjQ50AhWAyN4TojNWQ0ErLTRL5H+MvBQKJ1u6MDrK7Ehu+8vaD/1v8Ac
CgXf+qfdRrXbPkMuPjlWLH0/amNOaCb+EvVXghpmxYapAzoSz7nUDP7bqXAMOIQU
AhfZ1yvhjBeuP1vTQcHeTUxsa3Cdy/QOjS7F6YiPCcyKg7TwDFZQ64mdHIC0Zn+s
PfHV0U5M9eg1BJYji9G8Z28WMOeWyLx58avBBWuU/Cqd7a5K3Kc=
=pqd3
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[commons-build-plugin] annotated tag commons-build-plugin-1.10-RC1 updated (f76cdca -> 64b2bc6)

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

chtompki pushed a change to annotated tag commons-build-plugin-1.10-RC1
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git.


*** WARNING: tag commons-build-plugin-1.10-RC1 was modified! ***

from f76cdca  (commit)
  to 64b2bc6  (tag)
 tagging f76cdca60bac4e0cb94b5e8bd66b3d9630f6b980 (commit)
 replaces commons-build-plugin-1.9
  by Rob Tompkins
  on Tue Feb 26 07:50:53 2019 -0500

- Log -
Tagging commons-build-plugin-1.10-RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlx1Ni0ACgkQP6rSzV7L
sxQVGw/+LR6Ab3szFJgbyuBPJgLVkZwRfVPIfWhcdu976Tz3LQsIj7GUEDB6DVJ2
5fyBjElO7THr9e6O984ZssRCrw5LISt7X0q5RAc+bRnDyApYjBWd+WXdoRLhAp4t
6AJs0KCztQF6Aue8WPgrvRNcrSX9E6qvp0DkSxtdZ80szFwzf+NT5Iubzs/S5Mke
hdth+uWtzUA9fqe+c7DoL/+Htdh9/EBFEY1a5WOHjI3ett9zU8xHqeSFfropwSiK
vF+vQCYewTkB7EJhCwRrCMzhji8ATyxv/IygHwiAONnyvciC5yVAjwYVrmOXrzbA
QnfBmGOaVIULL5XnqAwWEzAmSCIQvlqFKUJcR3JOFiHI01Hc+3d6fNQduOfv7szh
WaZJxiEpeVggJndLEl00i3mTpODmun3jlGCRE3kxKElhN2NMqS0xStA14tCiUd73
I8Qwf8qfrjQ50AhWAyN4TojNWQ0ErLTRL5H+MvBQKJ1u6MDrK7Ehu+8vaD/1v8Ac
CgXf+qfdRrXbPkMuPjlWLH0/amNOaCb+EvVXghpmxYapAzoSz7nUDP7bqXAMOIQU
AhfZ1yvhjBeuP1vTQcHeTUxsa3Cdy/QOjS7F6YiPCcyKg7TwDFZQ64mdHIC0Zn+s
PfHV0U5M9eg1BJYji9G8Z28WMOeWyLx58avBBWuU/Cqd7a5K3Kc=
=pqd3
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[commons-build-plugin] branch 1.10 updated: (update) pom changes for 1.10

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

chtompki pushed a commit to branch 1.10
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git


The following commit(s) were added to refs/heads/1.10 by this push:
 new 013cc18  (update) pom changes for 1.10
013cc18 is described below

commit 013cc18b4c99404c8b602dea070cefb174af5de4
Author: Rob Tompkins 
AuthorDate: Tue Feb 26 07:20:49 2019 -0500

(update) pom changes for 1.10
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 53d328d..1144caf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   
   commons-build-plugin
   maven-plugin
-  1.10-SNAPSHOT
+  1.10
   Apache Commons Build Plugin Maven Mojo
   
 Apache Maven Mojo for Apache Commons Build tasks.
@@ -214,8 +214,8 @@
 
site-content
 
 
-1.8
-1.9
+1.9
+1.10
 RC1
 true
 
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}



[commons-build-plugin] branch 1.10 updated: (update) pom changes for 1.10

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

chtompki pushed a commit to branch 1.10
in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git


The following commit(s) were added to refs/heads/1.10 by this push:
 new 013cc18  (update) pom changes for 1.10
013cc18 is described below

commit 013cc18b4c99404c8b602dea070cefb174af5de4
Author: Rob Tompkins 
AuthorDate: Tue Feb 26 07:20:49 2019 -0500

(update) pom changes for 1.10
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 53d328d..1144caf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   
   commons-build-plugin
   maven-plugin
-  1.10-SNAPSHOT
+  1.10
   Apache Commons Build Plugin Maven Mojo
   
 Apache Maven Mojo for Apache Commons Build tasks.
@@ -214,8 +214,8 @@
 
site-content
 
 
-1.8
-1.9
+1.9
+1.10
 RC1
 true
 
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}