JDOM.
A complete, Java-based solution for accessing, manipulating, and outputting XML data.
Here is the list of declaration for jdom. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <version>1.1.3</version> </dependency>
If you think this Maven repository POM file listing for jdom is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Similar to Apache License but with the acknowledgment clause removed
URL: https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt.
The jdom-1.1.3 has 2 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 |
---|---|---|
XPath | jaxen 1.1.3 Jaxen is a universal Java XPath engine. | 9 |
Parser | xercesImpl 2.10.0 Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program.... | 29 |
The following packages are defined in the jdom-1.1.3.jar
org.jdom org.jdom.adapters org.jdom.filter org.jdom.input org.jdom.output org.jdom.transform org.jdom.xpath
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <packaging>jar</packaging> <name>JDOM</name> <version>1.1.3</version> <description> A complete, Java-based solution for accessing, manipulating, and outputting XML data </description> <url>http://www.jdom.org</url> <organization> <name>JDOM</name> <url>http://www.jdom.org</url> </organization> <mailingLists> <mailingList> <name>JDOM-interest Mailing List</name> <post>jdom-interest@jdom.org</post> <archive>http://jdom.markmail.org/</archive> </mailingList> </mailingLists> <licenses> <license> <name>Similar to Apache License but with the acknowledgment clause removed</name> <url>https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>git@github.com:/hunterhacker/jdom</url> <connection>scm:git:git@github.com:hunterhacker/jdom</connection> <developerConnection>scm:git:git@github.com:hunterhacker/jdom</developerConnection> </scm> <dependencies> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.3</version> <optional>true</optional> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.10.0</version> <optional>true</optional> </dependency> </dependencies> <properties> <jdk.version>1.2</jdk.version> </properties> </project>