Apache Commons Collections
Go to file
Stephen Kestle e7ab1162c2 Applied (most of) Brian Egge's clean up patch of previous commit for COLLECTIONS-245 - thanks! (And we're at 100%)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@593964 13f79535-47bb-0310-9956-ffa450edef68
2007-11-11 21:44:41 +00:00
data/test COLLECTIONS-229 - Remove deprecated classes and code 2006-10-28 12:53:28 +00:00
src Applied (most of) Brian Egge's clean up patch of previous commit for COLLECTIONS-245 - thanks! (And we're at 100%) 2007-11-11 21:44:41 +00:00
xdocs Tagged current head prior to creation of JDK5 branch 2006-10-26 19:50:40 +00:00
DEVELOPERS-GUIDE.html Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
LICENSE.txt Tagged current head prior to creation of JDK5 branch 2006-10-26 19:50:40 +00:00
NOTICE.txt Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
PROPOSAL.html Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
README.txt Tagged current head prior to creation of JDK5 branch 2006-10-26 19:50:40 +00:00
RELEASE-NOTES.txt Abstract*Decorator - Generify and use covariant return types 2006-11-04 12:07:39 +00:00
STATUS.html Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
build.xml Fixed junit compilation to use test.support.path instead of junit.jar 2007-11-09 01:56:05 +00:00
doap_collections.rdf Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
maven.xml Switch to new ASF licence format with copyright dates in NOTICE.txt 2006-10-28 00:37:31 +00:00
project.properties Added junit4 and easymock to the project 2007-07-13 10:54:00 +00:00
project.xml Updated CollectionUtils and test. Probably 80-90% complete for generics. Very open to review / patches. 2007-11-08 12:21:55 +00:00

README.txt

Jakarta Commons Collections
===========================

Welcome to the Collections component of the Jakarta Commons project.
This component contains many new collections and collection utilities.

Two jar files are produced by this component.
The first, commons-collections.jar is the main jar used by applications.
The second, commons-collections-testframework.jar is an extension to junit
for testing new collection implementations and is not normally used by applications.


Building from source
--------------------
This component requires the excellent Ant utility.
It can be found here :

  http://ant.apache.org/

For testing the project, you will also need JUnit :

  http://www.junit.org/

To let the test process find JUnit, you may make a 
copy of the build.properties.sample file, rename to
build.properties,  and modify to reflect
the location of the junit.jar on your computer.


Once you have Ant properly installed, and the
build.properties file correctly reflects the location
of your junit.jar, you are ready to build and test.
The major targets are:

ant compile      - compile the code
ant test         - test using junit
ant jar          - create a jar file
ant javadoc      - build the javadoc
ant dist         - create folders as per a distribution
ant tf.jar       - create the testframework jar file
ant tf.javadoc   - build the testframework javadoc


Maven
-----
The component can also be built using Maven. (Ant is the primary build tool.)
It can be found here :

  http://maven.apache.org/

Once installed, the jars may be built with 'maven jar'.