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.4.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.
The commons-digester-1.4.1 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 plugins are used in the commons-digester-1.4.1.jar
The following packages are defined in the commons-digester-1.4.1.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.4.1</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> <build> <testResources> <testResource> <directory>${pom.build.unitTestSourceDirectory}</directory> <includes> <include>**/*.xml</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>