practicalxml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.practicalxml</groupId> <artifactId>practicalxml</artifactId> <version>1.1.19</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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.sf.practicalxml</groupId> <artifactId>practicalxml</artifactId> <version>1.1.19</version> <name>practicalxml</name> <packaging>jar</packaging> <url>http://sourceforge.net/projects/practicalxml/</url> <description> A collection of utility classes for working with the JDK's built-in XML packages. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>kdgregory</id> <name>Keith Gregory</name> <url>http://www.kdgregory.com</url> </developer> <developer> <id>aganim</id> <name>Andrew Ganim</name> </developer> <developer> <id>ebernstein</id> <name>Eric Bernstein</name> </developer> <developer> <id>jahlborn</id> <name>James Ahlborn</name> </developer> <developer> <id>kmudrick</id> <name>Kevin Mudrick</name> </developer> <developer> <id>salewski</id> <name>Alan D. Salewski</name> </developer> </developers> <mailingLists> <mailingList> <name>practicalxml-commits</name> <subscribe>http://lists.sourceforge.net/mailman/listinfo/practicalxml-commits</subscribe> <unsubscribe>http://lists.sourceforge.net/mailman/listinfo/practicalxml-commits</unsubscribe> <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=practicalxml-commits</archive> </mailingList> </mailingLists> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <debug>true</debug> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <bottom> <a href="http://sourceforge.net/projects/practicalxml/"> <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=234884&type=3"> </a> </bottom> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> <configuration> <xmlPath>${basedir}/src/site/changes.xml</xmlPath> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <instrumentation> <excludes> <exclude>**/Test*.class</exclude> <exclude>**/AbstractTestCase.class</exclude> </excludes> </instrumentation> <executions> <execution> <goals> <goal>clean</goal> </goals> </execution> </executions> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.4.0</version> <configuration> <excludeFilterFile>src/site/findbugs-filter.xml</excludeFilterFile> </configuration> </plugin> </plugins> </reporting> <dependencies> <dependency> <!-- note scope is "provided": this library has some JUnit enhancements that users --> <!-- may or may not use; version 3.8.x is for backward compatibility if they do --> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.sf.kdgcommons</groupId> <artifactId>kdgcommons</artifactId> <version>1.0.14</version> </dependency> </dependencies> <scm> <connection>scm:svn:https://practicalxml.svn.sourceforge.net/svnroot/practicalxml</connection> <developerConnection>scm:svn:https://practicalxml.svn.sourceforge.net/svnroot/practicalxml</developerConnection> <url>http://practicalxml.svn.sourceforge.net/viewvc/practicalxml/</url> </scm> <distributionManagement> <repository> <id>build</id> <name>Local Deployment Directory</name> <url>file://${project.build.directory}/deploy</url> </repository> </distributionManagement> </project>