mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-09 03:25:25 +00:00
Prepare for next release.
This commit is contained in:
parent
97842394dc
commit
bcc005a0fd
@ -50,7 +50,7 @@ Getting Started
|
|||||||
|
|
||||||
+ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
|
+ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
|
||||||
+ Make sure you have a [GitHub account](https://github.com/signup/free).
|
+ Make sure you have a [GitHub account](https://github.com/signup/free).
|
||||||
+ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Collections's scope.
|
+ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Collections's scope.
|
||||||
+ Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist.
|
+ Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist.
|
||||||
+ Clearly describe the issue including steps to reproduce when it is a bug.
|
+ Clearly describe the issue including steps to reproduce when it is a bug.
|
||||||
+ Make sure you fill in the earliest version that you know has the issue.
|
+ Make sure you fill in the earliest version that you know has the issue.
|
||||||
@ -107,7 +107,7 @@ Additional Resources
|
|||||||
+ [Apache Commons Collections JIRA project page][jira]
|
+ [Apache Commons Collections JIRA project page][jira]
|
||||||
+ [Contributor License Agreement][cla]
|
+ [Contributor License Agreement][cla]
|
||||||
+ [General GitHub documentation](https://help.github.com/)
|
+ [General GitHub documentation](https://help.github.com/)
|
||||||
+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
|
+ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
|
||||||
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
|
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
|
||||||
+ `#apache-commons` IRC channel on `irc.freenode.net`
|
+ `#apache-commons` IRC channel on `irc.freenode.net`
|
||||||
|
|
||||||
|
20
README.md
20
README.md
@ -42,22 +42,24 @@
|
|||||||
--->
|
--->
|
||||||
Apache Commons Collections
|
Apache Commons Collections
|
||||||
===================
|
===================
|
||||||
[![Build Status](https://travis-ci.org/apache/commons-collections.svg?branch=trunk)](https://travis-ci.org/apache/commons-collections)
|
|
||||||
[![Coverage Status](https://coveralls.io/repos/apache/commons-collections/badge.svg?branch=trunk)](https://coveralls.io/r/apache/commons-collections)
|
|
||||||
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-collections4/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-collections4/)
|
|
||||||
|
|
||||||
The Apache Commons Collections package contains types that extend and augment the Java Collections Framework.
|
[![Build Status](https://travis-ci.org/apache/commons-collections4.svg)](https://travis-ci.org/apache/commons-collections4)
|
||||||
|
[![Coverage Status](https://coveralls.io/repos/apache/commons-collections4/badge.svg)](https://coveralls.io/r/apache/commons-collections4)
|
||||||
|
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-collections4/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-collections4/)
|
||||||
|
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-collections4/4.2.svg)](https://javadoc.io/doc/org.apache.commons/commons-collections4/4.2)
|
||||||
|
|
||||||
|
${project.description}
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
More information can be found on the [Apache Commons Collections homepage](https://commons.apache.org/proper/commons-collections).
|
More information can be found on the [Apache Commons Collections homepage](https://commons.apache.org/proper/commons-collections4).
|
||||||
The [JavaDoc](https://commons.apache.org/proper/commons-collections/javadocs/api-release) can be browsed.
|
The [JavaDoc](https://commons.apache.org/proper/commons-collections4/javadocs/api-release) can be browsed.
|
||||||
Questions related to the usage of Apache Commons Collections should be posted to the [user mailing list][ml].
|
Questions related to the usage of Apache Commons Collections should be posted to the [user mailing list][ml].
|
||||||
|
|
||||||
Where can I get the latest release?
|
Where can I get the latest release?
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-collections/download_collections.cgi).
|
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-collections4/download_collections4.cgi).
|
||||||
|
|
||||||
Alternatively you can pull it from the central Maven repositories:
|
Alternatively you can pull it from the central Maven repositories:
|
||||||
|
|
||||||
@ -65,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-collections4</artifactId>
|
<artifactId>commons-collections4</artifactId>
|
||||||
<version>4.1</version>
|
<version>4.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -96,7 +98,7 @@ Additional Resources
|
|||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
+ [Apache Commons Homepage](https://commons.apache.org/)
|
+ [Apache Commons Homepage](https://commons.apache.org/)
|
||||||
+ [Apache Bugtracker (JIRA)](https://issues.apache.org/jira/browse/COLLECTIONS)
|
+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/COLLECTIONS)
|
||||||
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
|
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
|
||||||
+ `#apache-commons` IRC channel on `irc.freenode.org`
|
+ `#apache-commons` IRC channel on `irc.freenode.org`
|
||||||
|
|
||||||
|
@ -31,10 +31,21 @@ limitations under the License.
|
|||||||
| 2) Set the following properties in the component's pom: |
|
| 2) Set the following properties in the component's pom: |
|
||||||
| - commons.componentid (required, alphabetic, lower case) |
|
| - commons.componentid (required, alphabetic, lower case) |
|
||||||
| - commons.release.version (required) |
|
| - commons.release.version (required) |
|
||||||
|
| - commons.release.name (required) |
|
||||||
| - commons.binary.suffix (optional) |
|
| - commons.binary.suffix (optional) |
|
||||||
| (defaults to "-bin", set to "" for pre-maven2 releases) |
|
| (defaults to "-bin", set to "" for pre-maven2 releases) |
|
||||||
|
| - commons.release.desc (optional) |
|
||||||
|
| - commons.release.subdir (optional) |
|
||||||
|
| |
|
||||||
|
| - commons.release.2/3.version (conditional) |
|
||||||
|
| - commons.release.2/3.name (conditional) |
|
||||||
|
| - commons.release.2/3.binary.suffix (optional) |
|
||||||
|
| - commons.release.2/3.desc (optional) |
|
||||||
|
| - commons.release.2/3.subdir (optional) |
|
||||||
| |
|
| |
|
||||||
| 3) Example Properties |
|
| 3) Example Properties |
|
||||||
|
| (commons.release.name inherited by parent: |
|
||||||
|
| ${project.artifactId}-${commons.release.version} |
|
||||||
| |
|
| |
|
||||||
| <properties> |
|
| <properties> |
|
||||||
| <commons.componentid>math</commons.componentid> |
|
| <commons.componentid>math</commons.componentid> |
|
||||||
@ -46,17 +57,17 @@ limitations under the License.
|
|||||||
<document>
|
<document>
|
||||||
<properties>
|
<properties>
|
||||||
<title>Download Apache Commons Collections</title>
|
<title>Download Apache Commons Collections</title>
|
||||||
<author email="dev@commons.apache.org">Commons Documentation Team</author>
|
<author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<section name="Download Apache Commons Collections">
|
<section name="Download Apache Commons Collections">
|
||||||
<subsection name="Using a Mirror">
|
<subsection name="Using a Mirror">
|
||||||
<p>
|
<p>
|
||||||
We recommend you use a mirror to download our release
|
We recommend you use a mirror to download our release
|
||||||
builds, but you <strong>must</strong> verify the integrity of
|
builds, but you <strong>must</strong> <a href="http://www.apache.org/info/verification.html">verify the integrity</a> of
|
||||||
the downloaded files using signatures downloaded from our main
|
the downloaded files using signatures downloaded from our main
|
||||||
distribution directories. Recent releases (48 hours) may not yet
|
distribution directories. Recent releases (48 hours) may not yet
|
||||||
be available from the mirrors.
|
be available from all the mirrors.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -88,39 +99,74 @@ limitations under the License.
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The <a href="http://www.apache.org/dist/commons/KEYS">KEYS</a>
|
It is essential that you
|
||||||
link links to the code signing keys used to sign the product.
|
<a href="https://www.apache.org/info/verification.html">verify the integrity</a>
|
||||||
The <code>PGP</code> link downloads the OpenPGP compatible signature from our main site.
|
of downloaded files, preferably using the <code>PGP</code> signature (<code>*.asc</code> files);
|
||||||
The <code>MD5</code> link downloads the checksum from the main site.
|
failing that using the <code>SHA1</code> hash (<code>*.sha1</code> checksum files).
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The <a href="https://www.apache.org/dist/commons/KEYS">KEYS</a>
|
||||||
|
file contains the public PGP keys used by Apache Commons developers
|
||||||
|
to sign releases.
|
||||||
</p>
|
</p>
|
||||||
</subsection>
|
</subsection>
|
||||||
</section>
|
</section>
|
||||||
<section name="Apache Commons Collections 4.1 (Java 6.0+)">
|
<section name="Apache Commons Collections 4.2 (Requires Java 7 or later)">
|
||||||
<subsection name="Binaries">
|
<subsection name="Binaries">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/binaries/commons-collections4-4.1-bin.tar.gz">commons-collections4-4.1-bin.tar.gz</a></td>
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections4-4.2-bin.tar.gz">commons-collections4-4.2-bin.tar.gz</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections4-4.1-bin.tar.gz.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections4-4.2-bin.tar.gz.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections4-4.1-bin.tar.gz.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections4-4.2-bin.tar.gz.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/binaries/commons-collections4-4.1-bin.zip">commons-collections4-4.1-bin.zip</a></td>
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections4-4.2-bin.zip">commons-collections4-4.2-bin.zip</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections4-4.1-bin.zip.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections4-4.2-bin.zip.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections4-4.1-bin.zip.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections4-4.2-bin.zip.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</subsection>
|
</subsection>
|
||||||
<subsection name="Source">
|
<subsection name="Source">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/source/commons-collections4-4.1-src.tar.gz">commons-collections4-4.1-src.tar.gz</a></td>
|
<td><a href="[preferred]/commons/collections4/source/commons-collections4-4.2-src.tar.gz">commons-collections4-4.2-src.tar.gz</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections4-4.1-src.tar.gz.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections4-4.2-src.tar.gz.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections4-4.1-src.tar.gz.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections4-4.2-src.tar.gz.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/source/commons-collections4-4.1-src.zip">commons-collections4-4.1-src.zip</a></td>
|
<td><a href="[preferred]/commons/collections4/source/commons-collections4-4.2-src.zip">commons-collections4-4.2-src.zip</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections4-4.1-src.zip.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections4-4.2-src.zip.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections4-4.1-src.zip.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections4-4.2-src.zip.asc">pgp</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</subsection>
|
||||||
|
</section>
|
||||||
|
<section name="Apache Commons Collections 4.1 (Requires Java 6 or later)">
|
||||||
|
<subsection name="Binaries">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections-4.1-bin.tar.gz">commons-collections-4.1-bin.tar.gz</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-4.1-bin.tar.gz.sha1">sha1</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-4.1-bin.tar.gz.asc">pgp</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections-4.1-bin.zip">commons-collections-4.1-bin.zip</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-4.1-bin.zip.sha1">sha1</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-4.1-bin.zip.asc">pgp</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</subsection>
|
||||||
|
<subsection name="Source">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td><a href="[preferred]/commons/collections4/source/commons-collections-4.1-src.tar.gz">commons-collections-4.1-src.tar.gz</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-4.1-src.tar.gz.sha1">sha1</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-4.1-src.tar.gz.asc">pgp</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><a href="[preferred]/commons/collections4/source/commons-collections-4.1-src.zip">commons-collections-4.1-src.zip</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-4.1-src.zip.sha1">sha1</a></td>
|
||||||
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-4.1-src.zip.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</subsection>
|
</subsection>
|
||||||
@ -129,28 +175,28 @@ limitations under the License.
|
|||||||
<subsection name="Binaries">
|
<subsection name="Binaries">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/binaries/commons-collections-3.2.2-bin.tar.gz">commons-collections-3.2.2-bin.tar.gz</a></td>
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections-3.2.2-bin.tar.gz">commons-collections-3.2.2-bin.tar.gz</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.tar.gz.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-3.2.2-bin.tar.gz.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.tar.gz.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-3.2.2-bin.tar.gz.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/binaries/commons-collections-3.2.2-bin.zip">commons-collections-3.2.2-bin.zip</a></td>
|
<td><a href="[preferred]/commons/collections4/binaries/commons-collections-3.2.2-bin.zip">commons-collections-3.2.2-bin.zip</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.zip.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-3.2.2-bin.zip.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.2-bin.zip.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/binaries/commons-collections-3.2.2-bin.zip.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</subsection>
|
</subsection>
|
||||||
<subsection name="Source">
|
<subsection name="Source">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/source/commons-collections-3.2.2-src.tar.gz">commons-collections-3.2.2-src.tar.gz</a></td>
|
<td><a href="[preferred]/commons/collections4/source/commons-collections-3.2.2-src.tar.gz">commons-collections-3.2.2-src.tar.gz</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.tar.gz.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-3.2.2-src.tar.gz.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.tar.gz.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-3.2.2-src.tar.gz.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="[preferred]/commons/collections/source/commons-collections-3.2.2-src.zip">commons-collections-3.2.2-src.zip</a></td>
|
<td><a href="[preferred]/commons/collections4/source/commons-collections-3.2.2-src.zip">commons-collections-3.2.2-src.zip</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.zip.md5">md5</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-3.2.2-src.zip.sha1">sha1</a></td>
|
||||||
<td><a href="http://www.apache.org/dist/commons/collections/source/commons-collections-3.2.2-src.zip.asc">pgp</a></td>
|
<td><a href="https://www.apache.org/dist/commons/collections4/source/commons-collections-3.2.2-src.zip.asc">pgp</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</subsection>
|
</subsection>
|
||||||
@ -160,8 +206,8 @@ limitations under the License.
|
|||||||
Older releases can be obtained from the archives.
|
Older releases can be obtained from the archives.
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="download"><a href="[preferred]/commons/collections/">browse download area</a></li>
|
<li class="download"><a href="[preferred]/commons/collections4/">browse download area</a></li>
|
||||||
<li><a href="http://archive.apache.org/dist/commons/collections/">archives...</a></li>
|
<li><a href="https://archive.apache.org/dist/commons/collections4/">archives...</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</body>
|
</body>
|
||||||
|
@ -43,35 +43,35 @@
|
|||||||
-->
|
-->
|
||||||
<document>
|
<document>
|
||||||
<properties>
|
<properties>
|
||||||
<title>Commons Collections Issue tracking</title>
|
<title>Apache Commons Collections Issue tracking</title>
|
||||||
<author email="dev@commons.apache.org">Commons Documentation Team</author>
|
<author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<section name="Commons Collections Issue tracking">
|
<section name="Apache Commons Collections Issue tracking">
|
||||||
<p>
|
<p>
|
||||||
Commons Collections uses <a href="http://issues.apache.org/jira/">ASF JIRA</a> for tracking issues.
|
Apache Commons Collections uses <a href="https://issues.apache.org/jira/">ASF JIRA</a> for tracking issues.
|
||||||
See the <a href="http://issues.apache.org/jira/browse/COLLECTIONS">Commons Collections JIRA project page</a>.
|
See the <a href="https://issues.apache.org/jira/browse/COLLECTIONS">Apache Commons Collections JIRA project page</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To use JIRA you may need to <a href="http://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
|
To use JIRA you may need to <a href="https://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
|
||||||
(if you have previously created/updated Commons issues using Bugzilla an account will have been automatically
|
(if you have previously created/updated Commons issues using Bugzilla an account will have been automatically
|
||||||
created and you can use the <a href="http://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot Password</a>
|
created and you can use the <a href="https://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot Password</a>
|
||||||
page to get a new password).
|
page to get a new password).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
If you would like to report a bug, or raise an enhancement request with
|
If you would like to report a bug, or raise an enhancement request with
|
||||||
Commons Collections please do the following:
|
Apache Commons Collections please do the following:
|
||||||
<ol>
|
<ol>
|
||||||
<li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">Search existing open bugs</a>.
|
<li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">Search existing open bugs</a>.
|
||||||
If you find your issue listed then please add a comment with your details.</li>
|
If you find your issue listed then please add a comment with your details.</li>
|
||||||
<li><a href="mail-lists.html">Search the mailing list archive(s)</a>.
|
<li><a href="mail-lists.html">Search the mailing list archive(s)</a>.
|
||||||
You may find your issue or idea has already been discussed.</li>
|
You may find your issue or idea has already been discussed.</li>
|
||||||
<li>Decide if your issue is a bug or an enhancement.</li>
|
<li>Decide if your issue is a bug or an enhancement.</li>
|
||||||
<li>Submit either a <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310465&issuetype=1&priority=4&assignee=-1">bug report</a>
|
<li>Submit either a <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310465&issuetype=1&priority=4&assignee=-1">bug report</a>
|
||||||
or <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310465&issuetype=4&priority=4&assignee=-1">enhancement request</a>.</li>
|
or <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310465&issuetype=4&priority=4&assignee=-1">enhancement request</a>.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -80,7 +80,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>the more information you provide, the better we can help you</li>
|
<li>the more information you provide, the better we can help you</li>
|
||||||
<li>test cases are vital, particularly for any proposed enhancements</li>
|
<li>test cases are vital, particularly for any proposed enhancements</li>
|
||||||
<li>the developers of Commons Collections are all unpaid volunteers</li>
|
<li>the developers of Apache Commons Collections are all unpaid volunteers</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -92,9 +92,9 @@
|
|||||||
<p>
|
<p>
|
||||||
You may also find these links useful:
|
You may also find these links useful:
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">All Open Commons Collections bugs</a></li>
|
<li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">All Open Apache Commons Collections bugs</a></li>
|
||||||
<li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=5&status=6">All Resolved Commons Collections bugs</a></li>
|
<li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC&status=5&status=6">All Resolved Apache Commons Collections bugs</a></li>
|
||||||
<li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC">All Commons Collections bugs</a></li>
|
<li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310465&sorter/field=issuekey&sorter/order=DESC">All Apache Commons Collections bugs</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
@ -41,30 +41,33 @@
|
|||||||
-->
|
-->
|
||||||
<document>
|
<document>
|
||||||
<properties>
|
<properties>
|
||||||
<title>Commons Collections Mailing Lists</title>
|
<title>Apache Commons Collections Mailing Lists</title>
|
||||||
<author email="dev@commons.apache.org">Commons Documentation Team</author>
|
<author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<section name="Overview">
|
<section name="Overview">
|
||||||
<p>
|
<p>
|
||||||
<a href="index.html">Commons Collections</a> shares mailing lists with all the other
|
<a href="index.html">Apache Commons Collections</a> shares mailing lists with all the other
|
||||||
<a href="http://commons.apache.org/components.html">Commons Components</a>.
|
<a href="http://commons.apache.org/components.html">Commons Components</a>.
|
||||||
To make it easier for people to only read messages related to components they are interested in,
|
To make it easier for people to only read messages related to components they are interested in,
|
||||||
the convention in Commons is to prefix the subject line of messages with the component's name,
|
the convention in Commons is to prefix the subject line of messages with the component's name,
|
||||||
for example:
|
for example:
|
||||||
<ul>
|
<ul>
|
||||||
<li>[collections] Problem with the ...</li>
|
<li>[collections4] Problem with the ...</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Questions related to the usage of Commons Collections should be posted to the
|
Questions related to the usage of Apache Commons Collections should be posted to the
|
||||||
<a href="http://mail-archives.apache.org/mod_mbox/commons-user/">User List</a>.
|
<a href="http://mail-archives.apache.org/mod_mbox/commons-user/">User List</a>.
|
||||||
<br />
|
<br />
|
||||||
The <a href="http://mail-archives.apache.org/mod_mbox/commons-dev/">Developer List</a>
|
The <a href="http://mail-archives.apache.org/mod_mbox/commons-dev/">Developer List</a>
|
||||||
is for questions and discussion related to the development of Commons Collections.
|
is for questions and discussion related to the development of Apache Commons Collections.
|
||||||
<br />
|
<br />
|
||||||
Please do not cross-post; developers are also subscribed to the user list.
|
Please do not cross-post; developers are also subscribed to the user list.
|
||||||
|
<br />
|
||||||
|
You must be subscribed to post to the mailing lists. Follow the Subscribe links below
|
||||||
|
to subscribe.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<strong>Note:</strong> please don't send patches or attachments to any of the mailing lists.
|
<strong>Note:</strong> please don't send patches or attachments to any of the mailing lists.
|
||||||
@ -73,10 +76,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section name="Commons Collections Mailing Lists">
|
<section name="Apache Commons Collections Mailing Lists">
|
||||||
<p>
|
<p>
|
||||||
<strong>Please prefix the subject line of any messages for <a href="index.html">Commons Collections</a>
|
<strong>Please prefix the subject line of any messages for <a href="index.html">Apache Commons Collections</a>
|
||||||
with <i>[collections]</i></strong> - <i>thanks!</i>
|
with <i>[collections4]</i></strong> - <i>thanks!</i>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
</p>
|
</p>
|
||||||
@ -96,12 +99,12 @@
|
|||||||
<td>
|
<td>
|
||||||
<strong>Commons User List</strong>
|
<strong>Commons User List</strong>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
Questions on using Commons Collections.
|
Questions on using Apache Commons Collections.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</td>
|
</td>
|
||||||
<td><a href="mailto:user-subscribe@commons.apache.org">Subscribe</a></td>
|
<td><a href="mailto:user-subscribe@commons.apache.org">Subscribe</a></td>
|
||||||
<td><a href="mailto:user-unsubscribe@commons.apache.org">Unsubscribe</a></td>
|
<td><a href="mailto:user-unsubscribe@commons.apache.org">Unsubscribe</a></td>
|
||||||
<td><a href="mailto:user@commons.apache.org?subject=[collections]">Post</a></td>
|
<td><a href="mailto:user@commons.apache.org?subject=[collections4]">Post</a></td>
|
||||||
<td><a href="http://mail-archives.apache.org/mod_mbox/commons-user/">mail-archives.apache.org</a></td>
|
<td><a href="http://mail-archives.apache.org/mod_mbox/commons-user/">mail-archives.apache.org</a></td>
|
||||||
<td><a href="http://markmail.org/list/org.apache.commons.users/">markmail.org</a><br />
|
<td><a href="http://markmail.org/list/org.apache.commons.users/">markmail.org</a><br />
|
||||||
<a href="http://www.mail-archive.com/user@commons.apache.org/">www.mail-archive.com</a><br />
|
<a href="http://www.mail-archive.com/user@commons.apache.org/">www.mail-archive.com</a><br />
|
||||||
@ -114,12 +117,12 @@
|
|||||||
<td>
|
<td>
|
||||||
<strong>Commons Developer List</strong>
|
<strong>Commons Developer List</strong>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
Discussion of development of Commons Collections.
|
Discussion of development of Apache Commons Collections.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
</td>
|
</td>
|
||||||
<td><a href="mailto:dev-subscribe@commons.apache.org">Subscribe</a></td>
|
<td><a href="mailto:dev-subscribe@commons.apache.org">Subscribe</a></td>
|
||||||
<td><a href="mailto:dev-unsubscribe@commons.apache.org">Unsubscribe</a></td>
|
<td><a href="mailto:dev-unsubscribe@commons.apache.org">Unsubscribe</a></td>
|
||||||
<td><a href="mailto:dev@commons.apache.org?subject=[collections]">Post</a></td>
|
<td><a href="mailto:dev@commons.apache.org?subject=[collections4]">Post</a></td>
|
||||||
<td><a href="http://mail-archives.apache.org/mod_mbox/commons-dev/">mail-archives.apache.org</a></td>
|
<td><a href="http://mail-archives.apache.org/mod_mbox/commons-dev/">mail-archives.apache.org</a></td>
|
||||||
<td><a href="http://markmail.org/list/org.apache.commons.dev/">markmail.org</a><br />
|
<td><a href="http://markmail.org/list/org.apache.commons.dev/">markmail.org</a><br />
|
||||||
<a href="http://www.mail-archive.com/dev@commons.apache.org/">www.mail-archive.com</a><br />
|
<a href="http://www.mail-archive.com/dev@commons.apache.org/">www.mail-archive.com</a><br />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user