Commons Digester.
The Digester package lets you configure an XML to Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized..
Here is the list of declaration for commons-digester. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>2.1</version> </dependency>
If you think this Maven repository POM file listing for commons-digester is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The commons-digester-2.1 has 3 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 |
---|---|---|
Data Structure | commons-beanutils 1.8.3 BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. | 121 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
JUnit | junit 4.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. | 1256 |
The following table lists the most popular artifacts which are depending on commons-digester-2.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Report | jasperreports 5.5.1 JasperReports Library | 15 |
The following plugins are used in the commons-digester-2.1.jar
The following packages are defined in the commons-digester-2.1.jar
org.apache.commons.digester org.apache.commons.digester.annotations org.apache.commons.digester.annotations.handlers org.apache.commons.digester.annotations.internal org.apache.commons.digester.annotations.providers org.apache.commons.digester.annotations.reflect org.apache.commons.digester.annotations.rules org.apache.commons.digester.annotations.spi org.apache.commons.digester.annotations.utils org.apache.commons.digester.parser org.apache.commons.digester.plugins org.apache.commons.digester.plugins.strategies org.apache.commons.digester.substitution org.apache.commons.digester.xmlrules
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- 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>17</version> </parent> <modelVersion>4.0.0</modelVersion> <name>Commons Digester</name> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>2.1</version> <inceptionYear>2001</inceptionYear> <description> The Digester package lets you configure an XML to Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. </description> <url>http://commons.apache.org/digester/</url> <issueManagement> <system>jira</system> <url>http://issues.apache.org/jira/browse/DIGESTER</url> </issueManagement> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_2_1_RC2</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_2_1_RC2</developerConnection> <url>http://svn.apache.org/viewvc/commons/proper/digester/tags/DIGESTER_2_1_RC2</url> </scm> <contributors> <contributor> <name>Bradley M. Handy</name> <email>bhandy@users.sf.net</email> </contributor> <contributor> <name>Christopher Lenz</name> </contributor> <contributor> <name>Ted Husted</name> </contributor> <contributor> <name>David H. Martin</name> </contributor> <contributor> <name>Henri Chen</name> </contributor> <contributor> <name>Janek Bogucki</name> </contributor> <contributor> <name>Mark Huisman</name> </contributor> <contributor> <name>Paul Jack</name> </contributor> <contributor> <name>Anton Maslovsky</name> </contributor> <contributor> <name>Matt Cleveland</name> </contributor> <contributor> <name>Gabriele Carcassi</name> </contributor> <contributor> <name>Wendy Smoak</name> <email>java@wendysmoak.com</email> </contributor> <contributor> <name>Kevin Ross</name> <email>kevin.ross@iverticalleap.com</email> </contributor> </contributors> <distributionManagement> <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> <site> <id>apache.website</id> <name>Apache Commons Site</name> <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/digester</url> </site> </distributionManagement> <properties> <maven.compile.source>1.5</maven.compile.source> <maven.compile.target>1.5</maven.compile.target> <commons.componentid>digester</commons.componentid> <commons.release.version>2.1</commons.release.version> <commons.release.desc>(minium JDK 1.5)</commons.release.desc> <commons.release.2.version>1.8.1</commons.release.2.version> <commons.release.2.desc>(minimum JDK 1.3)</commons.release.2.desc> <commons.rc.version>RC2</commons.rc.version> <commons.jira.id>DIGESTER</commons.jira.id> <commons.jira.pid>12310471</commons.jira.pid> </properties> <build> <resources> <resource> <directory>.</directory> <targetPath>META-INF</targetPath> <includes> <include>NOTICE.txt</include> <include>LICENSE.txt</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>**/*.dtd</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>false</filtering> <includes> <include>**/*.xml</include> <include>**/*.xsd</include> </includes> </testResource> </testResources> <plugins> <plugin> <!-- - A number of the pre-maven test case "suport" classes have names starting with Test. - This confuses the maven surefire "auto-detect test case" functionality, so we - need to manually exclude them. --> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/TestBean.java</exclude> <exclude>**/TestRule.java</exclude> <exclude>**/TestRuleSet.java</exclude> <exclude>**/Test*$*.java</exclude> </excludes> <systemPropertyVariables> <!-- Suppress most logging output --> <org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log> <org.apache.commons.logging.simplelog.defaultlog>fatal</org.apache.commons.logging.simplelog.defaultlog> </systemPropertyVariables> </configuration> </plugin> <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.8.3</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> <configuration> <issueLinkTemplate>%URL%/../%ISSUE%</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> <report>jira-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}/src/main/config/checkstyle.xml</configLocation> <enableRulesSummary>false</enableRulesSummary> <headerFile>${basedir}/src/main/config/file-header.txt</headerFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.3</version> <configuration> <targetJdk>1.5</targetJdk> </configuration> <!--Use default rules--> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.2.1</version> <configuration> <comparisonVersion>2.0</comparisonVersion> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>rc</id> <distributionManagement> <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> <site> <id>apache.website</id> <name>Apache Commons Release Candidate Staging Site</name> <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url> </site> </distributionManagement> </profile> </profiles> </project>