Digester.
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..
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>1.5</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.
The commons-digester-1.5 has 5 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.6 Java Bean Utililities | 38 |
Data Structure | commons-collections 2.1 Commons Collections | 44 |
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-digester-1.5. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
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-digester-1.5.jar
The following packages are defined in the commons-digester-1.5.jar
org.apache.commons.digester org.apache.commons.digester.rss org.apache.commons.digester.xmlrules
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <name>Digester</name> <version>1.5</version> <description>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.</description> <inceptionYear>2001</inceptionYear> <contributors> <contributor> <name>Bradley M. Handy</name> <email>bhandy@users.sf.net</email> </contributor> </contributors> <build> <testResources> <testResource> <directory>${pom.build.unitTestSourceDirectory}</directory> <includes> <include>**/*.xml</include> </includes> </testResource> <testResource> <directory>${pom.build.sourceDirectory}</directory> <includes> <include>**/*.dtd</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> <include>**/*TestCase.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> <scope>test</scope> </dependency> </dependencies> </project>