JDOM.
JDOM is, quite simply, a Java representation of an XML document. JDOM provides a way to represent that document for easy and efficient reading, manipulation, and writing. It has a straightforward API, is a lightweight and fast, and is optimized for the Java programmer. It's an alternative t....
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</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.
The following table lists the most popular artifacts which are depending on jdom-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Build | maven-shade-plugin 1.4 Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes or removing unused classes. | 15 |
XML | Saxon-HE 9.5.1-2 The XSLT and XQuery Processor | 9 |
XML | xsdlib 2010.1 XML Schema datatypes library | 7 |
GWT | gwt-maven-plugin 2.4.0 Maven plugin for the Google Web Toolkit. | 11 |
Build | maven-shade-plugin 2.2 Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes or removing unused classes. | 15 |
Web Framework | halbuilder-core 2.0.2 Java based builder for the Hal specification http://stateless.co/hal_specification.html | 17 |
The following packages are defined in the jdom-1.1.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.
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>JDOM</name> <description> JDOM is, quite simply, a Java representation of an XML document. JDOM provides a way to represent that document for easy and efficient reading, manipulation, and writing. It has a straightforward API, is a lightweight and fast, and is optimized for the Java programmer. It's an alternative to DOM and SAX, although it integrates well with both DOM and SAX. </description> <url>http://www.jdom.org/</url> <scm> <connection>scm:cvs:pserver:anonymous@cvs.jdom.org:/home/cvspublic:jdom</connection> </scm> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.6.1</version> <optional>true</optional> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> <version>2.6.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jaxen-core</artifactId> <version>1.0-FCS</version> <!-- patched 1.0-FCS --> <optional>true</optional> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jaxen-jdom</artifactId> <version>1.0-FCS</version> <!-- patched 1.0-FCS --> <optional>true</optional> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>saxpath</artifactId> <version>1.0-FCS</version> <!-- patched 1.0-FCS --> <optional>true</optional> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.5.D1</version> <optional>true</optional> </dependency> </dependencies> </project>