jdom2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.hullbend</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.2</version> </dependency>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.hullbend</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.2</version> <name>com.github.hullbend:jdom2</name> <description>A slightly patched Java 8 version of jdom-2.0.6.1 that can also run on Java 17</description> <url>https://github.com/HullBend/jdom-2.0.6.1-patched/</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <id>hunterhacker</id> <name>Jason Hunter</name> <email>jhunter@servlets.com</email> <organization>JDOM</organization> <organizationUrl>http://www.jdom.org/</organizationUrl> </developer> <developer> <id>rolfl</id> <name>Rolf Lear</name> <email>jdom@tuis.net</email> <organization>JDOM</organization> <organizationUrl>http://www.jdom.org/</organizationUrl> </developer> </developers> <scm> <url>https://github.com/HullBend/jdom-2.0.6.1-patched</url> <connection>scm:git:https://github.com/HullBend/jdom-2.0.6.1-patched.git</connection> <developerConnection>scm:git:https://github.com/HullBend/jdom-2.0.6.1-patched.git</developerConnection> </scm> <properties> <project.build.sourceEncoding>Cp1252</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.12.2</version> <scope>test</scope> <!--exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions--> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>