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 b82bd31ba8f0b62e1d90b84818105f13f82c8d3f Author: Alex Herbert <aherb...@apache.org> AuthorDate: Sun Feb 17 13:53:59 2019 +0000 Updated main README.md to fix javadoc links to the core modules. Updated all the donation titles to use 'Commons RNG'. --- README.md | 22 +++++++++++++--------- commons-rng-client-api/README.md | 8 ++++---- commons-rng-core/README.md | 8 ++++---- commons-rng-examples/README.md | 8 ++++---- commons-rng-examples/examples-jmh/README.md | 8 ++++---- commons-rng-examples/examples-jpms/README.md | 8 ++++---- .../examples-jpms/jpms-app/README.md | 8 ++++---- .../examples-jpms/jpms-lib/README.md | 8 ++++---- commons-rng-examples/examples-quadrature/README.md | 8 ++++---- commons-rng-examples/examples-sampling/README.md | 8 ++++---- commons-rng-examples/examples-stress/README.md | 8 ++++---- commons-rng-sampling/README.md | 8 ++++---- commons-rng-simple/README.md | 8 ++++---- 13 files changed, 61 insertions(+), 57 deletions(-) diff --git a/README.md b/README.md index 71ec933..47af962 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -45,28 +45,32 @@ Apache Commons RNG [](https://travis-ci.org/apache/commons-rng) [](https://coveralls.io/r/apache/commons-rng) -[](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng-parent/) -[](https://javadoc.io/doc/org.apache.commons/commons-rng-parent/1.2) +[](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng-simple/) +[](https://javadoc.io/doc/org.apache.commons/commons-rng-simple/1.2) The Apache Commons RNG project provides pure-Java implementation of pseudo-random generators. Documentation ------------- -More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). -The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The Javadoc for each of the modules can be browsed: + +- [Commons RNG Core](https://commons.apache.org/proper/commons-rng/commons-rng-core/apidocs/) +- [Commons RNG Simple](https://commons.apache.org/proper/commons-rng/commons-rng-simple/apidocs/) +- [Commons RNG Sampling](https://commons.apache.org/proper/commons-rng/commons-rng-sampling/apidocs/) + Questions related to the usage of Apache Commons RNG should be posted to the [user mailing list][ml]. Where can I get the latest release? ----------------------------------- You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-rng/download_rng.cgi). -Alternatively you can pull it from the central Maven repositories: +Alternatively you can pull it from the central Maven repositories, e.g.: ```xml <dependency> <groupId>org.apache.commons</groupId> - <artifactId>commons-rng-parent</artifactId> + <artifactId>commons-rng-simple</artifactId> <version>1.2</version> </dependency> ``` @@ -92,12 +96,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-client-api/README.md b/commons-rng-client-api/README.md index 8aa3fdd..425b7fd 100644 --- a/commons-rng-client-api/README.md +++ b/commons-rng-client-api/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -53,7 +53,7 @@ API for client code that uses random numbers generators. Documentation ------------- -More information can be found on the [Apache Commons RNG Client API homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons RNG Client API should be posted to the [user mailing list][ml]. @@ -92,12 +92,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG Client API? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-core/README.md b/commons-rng-core/README.md index b377b1d..9346025 100644 --- a/commons-rng-core/README.md +++ b/commons-rng-core/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -57,7 +57,7 @@ Pure Java implementations of random numbers generator algorithms. Documentation ------------- -More information can be found on the [Apache Commons RNG Core homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons RNG Core should be posted to the [user mailing list][ml]. @@ -96,12 +96,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG Core? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/README.md b/commons-rng-examples/README.md index 78b41cf..79fddfa 100644 --- a/commons-rng-examples/README.md +++ b/commons-rng-examples/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -56,7 +56,7 @@ Examples of use of the "Commons RNG" library. Documentation ------------- -More information can be found on the [Apache Commons RNG Examples homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons RNG Examples should be posted to the [user mailing list][ml]. @@ -95,12 +95,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG Examples? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-jmh/README.md b/commons-rng-examples/examples-jmh/README.md index 3993f28..72237d4 100644 --- a/commons-rng-examples/examples-jmh/README.md +++ b/commons-rng-examples/examples-jmh/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -54,7 +54,7 @@ Code for running JMH benchmarks that assess the performance of the generators. Documentation ------------- -More information can be found on the [JMH Benchmark homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of JMH Benchmark should be posted to the [user mailing list][ml]. @@ -93,12 +93,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like JMH Benchmark? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-jpms/README.md b/commons-rng-examples/examples-jpms/README.md index 29a4cf7..4e591b8 100644 --- a/commons-rng-examples/examples-jpms/README.md +++ b/commons-rng-examples/examples-jpms/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -53,7 +53,7 @@ Testing JPMS. Code in this module is not part of the public API. Documentation ------------- -More information can be found on the [JPMS Integration test homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of JPMS Integration test should be posted to the [user mailing list][ml]. @@ -92,12 +92,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like JPMS Integration test? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-jpms/jpms-app/README.md b/commons-rng-examples/examples-jpms/jpms-app/README.md index 3119e76..71ba924 100644 --- a/commons-rng-examples/examples-jpms/jpms-app/README.md +++ b/commons-rng-examples/examples-jpms/jpms-app/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -53,7 +53,7 @@ Testing JPMS. Code in this module is not part of the public API. Documentation ------------- -More information can be found on the [JPMS module example (application) homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of JPMS module example (application) should be posted to the [user mailing list][ml]. @@ -92,12 +92,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like JPMS module example (application)? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-jpms/jpms-lib/README.md b/commons-rng-examples/examples-jpms/jpms-lib/README.md index 7c35906..2d29e99 100644 --- a/commons-rng-examples/examples-jpms/jpms-lib/README.md +++ b/commons-rng-examples/examples-jpms/jpms-lib/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -53,7 +53,7 @@ Testing JPMS. Code in this module is not part of the public API. Documentation ------------- -More information can be found on the [JPMS module example (library) homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of JPMS module example (library) should be posted to the [user mailing list][ml]. @@ -92,12 +92,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like JPMS module example (library)? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-quadrature/README.md b/commons-rng-examples/examples-quadrature/README.md index f233691..6cb8637 100644 --- a/commons-rng-examples/examples-quadrature/README.md +++ b/commons-rng-examples/examples-quadrature/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -54,7 +54,7 @@ Application for calling external tools that perform stringent uniformity tests. Documentation ------------- -More information can be found on the [Quadrature example homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Quadrature example should be posted to the [user mailing list][ml]. @@ -93,12 +93,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Quadrature example? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-sampling/README.md b/commons-rng-examples/examples-sampling/README.md index e61154f..2ffa8cf 100644 --- a/commons-rng-examples/examples-sampling/README.md +++ b/commons-rng-examples/examples-sampling/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -54,7 +54,7 @@ Application for calling external tools that perform stringent uniformity tests. Documentation ------------- -More information can be found on the [Sampling example homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Sampling example should be posted to the [user mailing list][ml]. @@ -93,12 +93,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Sampling example? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-examples/examples-stress/README.md b/commons-rng-examples/examples-stress/README.md index 27b38ab..67aaffa 100644 --- a/commons-rng-examples/examples-stress/README.md +++ b/commons-rng-examples/examples-stress/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -54,7 +54,7 @@ Application for calling external tools that perform stringent uniformity tests. Documentation ------------- -More information can be found on the [Stress test example homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Stress test example should be posted to the [user mailing list][ml]. @@ -93,12 +93,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Stress test example? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-sampling/README.md b/commons-rng-sampling/README.md index 1720491..15ad51a 100644 --- a/commons-rng-sampling/README.md +++ b/commons-rng-sampling/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -54,7 +54,7 @@ The Apache Commons RNG Sampling module provides samplers Documentation ------------- -More information can be found on the [Apache Commons RNG Sampling homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons RNG Sampling should be posted to the [user mailing list][ml]. @@ -93,12 +93,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG Sampling? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org` diff --git a/commons-rng-simple/README.md b/commons-rng-simple/README.md index d695895..616340d 100644 --- a/commons-rng-simple/README.md +++ b/commons-rng-simple/README.md @@ -34,7 +34,7 @@ | 3) Example Properties | | | | <properties> | - | <commons.componentid>math</commons.componentid> | + | <commons.componentid>rng</commons.componentid> | | <commons.release.version>1.2</commons.release.version> | | </properties> | | | @@ -53,7 +53,7 @@ Simple API for instantiating random numbers generators. Documentation ------------- -More information can be found on the [Apache Commons RNG Simple homepage](https://commons.apache.org/proper/commons-rng). +More information can be found on the [Apache Commons RNG homepage](https://commons.apache.org/proper/commons-rng). The [Javadoc](https://commons.apache.org/proper/commons-rng/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons RNG Simple should be posted to the [user mailing list][ml]. @@ -92,12 +92,12 @@ See the `NOTICE.txt` file for required notices and attributions. Donations --------- -You like Apache Commons RNG Simple? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. +You like Apache Commons RNG? The [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. Additional Resources -------------------- -+ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Commons RNG homepage](https://commons.apache.org/) + [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/RNG) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.org`