Maven Repository - POM file for XML jdom 1.1.3 1.1.3

Summary

JDOM.

A complete, Java-based solution for accessing, manipulating, and outputting XML data.

Declaration

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.

License

Name:Similar to Apache License but with the acknowledgment clause removed
URL: https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt.





Depends on

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.

CategoryArtifactDepended By Count
XPathjaxen 1.1.3
Jaxen is a universal Java XPath engine.
9
ParserxercesImpl 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

Packages

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




POM File Source

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>