Commons Chain.
An implementation of the GoF Chain of Responsibility pattern.
Here is the list of declaration for commons-chain. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-chain</groupId> <artifactId>commons-chain</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for commons-chain is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The commons-chain-1.2 has 7 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 |
---|---|---|
XML | commons-digester 1.8 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. | 40 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
JUnit | junit 3.8.1 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. | 1966 |
The following plugins are used in the commons-chain-1.2.jar
The following packages are defined in the commons-chain-1.2.jar
org.apache.commons.chain org.apache.commons.chain.config org.apache.commons.chain.generic org.apache.commons.chain.impl org.apache.commons.chain.web org.apache.commons.chain.web.faces org.apache.commons.chain.web.portlet org.apache.commons.chain.web.servlet
Here is the content of the POM file.
<?xml version="1.0"?> <!-- 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. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> <version>10</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>commons-chain</groupId> <artifactId>commons-chain</artifactId> <version>1.2</version> <name>Commons Chain</name> <description> An implementation of the GoF Chain of Responsibility pattern </description> <url>http://commons.apache.org/chain/</url> <issueManagement> <system>jira</system> <url>http://issues.apache.org/jira/browse/CHAIN</url> </issueManagement> <inceptionYear>2003</inceptionYear> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/chain/trunk/</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/chain/trunk/</developerConnection> <url>http://svn.apache.org/viewvc/commons/proper/chain/trunk/</url> </scm> <properties> <maven.compile.source>1.3</maven.compile.source> <maven.compile.target>1.3</maven.compile.target> <commons.componentid>chain</commons.componentid> <commons.release.version>1.2</commons.release.version> <commons.jira.id>CHAIN</commons.jira.id> <commons.jira.pid>12310462</commons.jira.pid> <commons.osgi.import>!javax.portlet,*</commons.osgi.import> <commons.osgi.dynamicImport>javax.portlet</commons.osgi.dynamicImport> </properties> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>src/test</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> <descriptor>src/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.7.0</version> <optional>true</optional> <!-- not originally optional, but as pom was added 6 months after release added to prevent builds from breaking --> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.8</version> <optional>true</optional> <!-- not originally optional, but as pom was added 6 months after release added to prevent builds from breaking --> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <optional>true</optional> <!-- not originally optional, but as pom was added 6 months after release added to prevent builds from breaking --> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <optional>true</optional> </dependency> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> <version>1.0</version> <optional>true</optional> </dependency> <dependency> <groupId>myfaces</groupId> <artifactId>myfaces-api</artifactId> <version>1.1.0</version> <optional>true</optional> <exclusions> <exclusion> <groupId>oro</groupId> <artifactId>oro</artifactId> </exclusion> <exclusion> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </exclusion> <exclusion> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> </exclusion> <exclusion> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </exclusion> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> <exclusion> <groupId>commons-el</groupId> <artifactId>commons-el</artifactId> </exclusion> <exclusion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.0</version> <configuration> <xmlPath>${basedir}/xdocs/changes.xml</xmlPath> <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.1</version> <configuration> <configLocation>${basedir}/checkstyle.xml</configLocation> <enableRulesSummary>false</enableRulesSummary> <headerFile>${basedir}/license-header.txt</headerFile> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.2</version> <configuration> <comparisonVersion>1.1</comparisonVersion> <minSeverity>info</minSeverity> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.4</version> <configuration> <linksource>true</linksource> <links> <link>http://java.sun.com/j2se/1.4.2/docs/api/</link> <link>http://java.sun.com/j2ee/1.4/docs/api/</link> <link>http://commons.apache.org/digester/apidocs/</link> </links> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <threshold>Normal</threshold> <effort>Default</effort> </configuration> </plugin> </plugins> </reporting> </project>