Collections.
Commons Collections.
Here is the list of declaration for commons-collections. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>2.1</version> </dependency>
If you think this Maven repository POM file listing for commons-collections is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The commons-collections-2.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 21 |
The following table lists the most popular artifacts which are depending on commons-collections-2.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Database | commons-dbcp 1.2 Commons Database Connection Pooling | 12 |
Network | ehcache 1.2.3 ehcache is a pure Java, in-process cache with the following features: 1. Fast. 2. Simple. 3. Multiple eviction policies: LRU, LFU and FIFO. 4. Caches can be in memory or on disk. 5. Disk Stores can be persistent between VM restarts. 6. Distributed caching using multicast and RMI,... | 18 |
XML | commons-digester 1.5 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 8 |
Database | commons-dbcp 1.2.1 Commons Database Connection Pooling | 20 |
Data Structure | commons-pool 1.2 Commons Object Pooling Library | 18 |
Report | jasperreports 5.5.1 JasperReports Library | 15 |
Report | jasperreports 3.7.6 JasperReports Library | 10 |
XML | commons-digester 1.7 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 182 |
XML | commons-digester 1.4.1 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 31 |
XML | commons-jelly-tags-xml 1.1 The Jelly XML Tag Library | 154 |
XML | commons-jelly 1.0 Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine. | 53 |
XML | struts 1.2.4 The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a... | 12 |
The following plugins are used in the commons-collections-2.1.jar
The following packages are defined in the commons-collections-2.1.jar
org.apache.commons.collections org.apache.commons.collections.comparators org.apache.commons.collections.iterators
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <name>Collections</name> <version>2.1</version> <description>Commons Collections</description> <inceptionYear>2002</inceptionYear> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/TestAll.java</exclude> <exclude>**/BulkTest.java</exclude> <exclude>**/TestComparableComparator.java</exclude> <exclude>**/TestComparatorChain.java</exclude> <exclude>**/TestComparator.java</exclude> <exclude>**/TestCursorableLinkedList.java</exclude> <exclude>**/TestNullComparator.java</exclude> <exclude>**/TestReverseComparator.java</exclude> <exclude>**/LocalTestNode.java</exclude> <exclude>**/TestAbstractIntArrayList.java</exclude> <exclude>**/TestAbstractLongArrayList.java</exclude> <exclude>**/TestAbstractShortArrayList.java</exclude> <exclude>**/TestArrayList.java</exclude> <exclude>**/TestArrayStack.java</exclude> <exclude>**/TestBag.java</exclude> <exclude>**/TestCollection.java</exclude> <exclude>**/TestFastArrayList1.java</exclude> <exclude>**/TestFastArrayList.java</exclude> <exclude>**/TestFastHashMap1.java</exclude> <exclude>**/TestFastHashMap.java</exclude> <exclude>**/TestFastTreeMap1.java</exclude> <exclude>**/TestFastTreeMap.java</exclude> <exclude>**/TestIterator.java</exclude> <exclude>**/TestList.java</exclude> <exclude>**/TestLRUMap.java</exclude> <exclude>**/TestMap.java</exclude> <exclude>**/TestMultiHashMap.java</exclude> <exclude>**/TestObject.java</exclude> <exclude>**/TestProxyMap.java</exclude> <exclude>**/TestSequencedHashMap.java</exclude> <exclude>**/TestSoftRefHashMap.java</exclude> <exclude>**/TestSet.java</exclude> <exclude>**/TestTreeMap.java</exclude> <exclude>**/TestPredicatedCollection.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> <scope>test</scope> </dependency> </dependencies> </project>