xmltool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mycila.xmltool</groupId> <artifactId>xmltool</artifactId> <version>3.3</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> <!-- POM settings --> <groupId>com.mycila.xmltool</groupId> <artifactId>xmltool</artifactId> <version>3.3</version> <packaging>jar</packaging> <name>xmltool</name> <description>XML DSL</description> <url>http://code.mycila.com/</url> <inceptionYear>2008</inceptionYear> <!-- Properties --> <properties> <jdk.version>1.5</jdk.version> </properties> <!-- Versionning system --> <scm> <connection>scm:svn:http://xmltool.googlecode.com/svn/tags/xmltool-3.3</connection> <developerConnection>scm:svn:https://xmltool.googlecode.com/svn/tags/xmltool-3.3</developerConnection> <url>http://xmltool.googlecode.com/svn/tags/xmltool-3.3</url> </scm> <!-- Project settings --> <organization> <name>Mathieu Carbou</name> <url>http://mathieu.carbou.free.fr/</url> </organization> <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>mathieu.carbou</id> <name>Mathieu Carbou</name> <email>mathieu.carbou@gmail.com</email> <organization>Mathieu Carbou</organization> <organizationUrl>http://mathieu.carbou.free.fr/</organizationUrl> <timezone>-5</timezone> <roles> <role>project administrator</role> <role>developer</role> </roles> </developer> </developers> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/xmltool/issues/list</url> </issueManagement> <ciManagement /> <mailingLists> <mailingList> <name>xmltool</name> <subscribe>xmltool-subscribe@googlegroups.com</subscribe> <unsubscribe>xmltool-unsubscribe@googlegroups.com</unsubscribe> <archive>http://groups.google.com/group/xmltool</archive> </mailingList> </mailingLists> <!-- Distributions --> <distributionManagement> <repository> <id>mc-release</id> <name>Alternate Maven repository of releases</name> <url>dav:https://mc-repo.googlecode.com/svn/maven2/releases</url> </repository> <snapshotRepository> <id>mc-snapshot</id> <name>Alternate Maven repository of snapshots</name> <url>dav:https://mc-repo.googlecode.com/svn/maven2/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> <site> <id>xmltool-website</id> <name>xmltool website</name> <url>file://${basedir}/target/dist/site</url> </site> </distributionManagement> <!-- BUILD --> <prerequisites> <maven>2.0.9</maven> </prerequisites> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> <plugins> <!-- for maven plugins --> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>.clover</directory> </fileset> <fileset> <directory>test-output</directory> </fileset> </filesets> </configuration> </plugin> <!-- IDE descriptors --> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> </configuration> </plugin> <plugin> <artifactId>maven-idea-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> </configuration> </plugin> <!-- compilation --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <showDeprecation>true</showDeprecation> </configuration> </plugin> <!-- testing --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <parallel>true</parallel> <threadCount>5</threadCount> </configuration> </plugin> <!-- packaging --> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-remote-resources-plugin</artifactId> <executions> <execution> <goals> <goal>process</goal> </goals> <configuration> <resourceBundles> <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle> </resourceBundles> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>${basedir}/src/main/assembly/project.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> <!-- releasing --> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> </plugin> <!-- documentation --> <plugin> <artifactId>maven-site-plugin</artifactId> <configuration> <locales>en</locales> </configuration> </plugin> <plugin> <groupId>com.google.code.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.3.0</version> <configuration> <header>${basedir}/src/main/etc/header.txt</header> <failIfMissing>true</failIfMissing> <properties> <owner>Mathieu Carbou</owner> <year>${project.inceptionYear}</year> <email>mathieu.carbou@gmail.com</email> </properties> <excludes> <exclude>LICENSE.txt</exclude> <exclude>src/test/resources/**</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-jxr-plugin</artifactId> <configuration> <linkJavadoc>true</linkJavadoc> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <quiet>true</quiet> </configuration> <reportSets> <reportSet> <reports> <report>javadoc</report> </reports> <configuration> <links> <link>http://java.sun.com/javase/6/docs/api/</link> </links> </configuration> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <configuration> <linkXref>true</linkXref> <targetJdk>${jdk.version}</targetJdk> <minimumTokens>100</minimumTokens> <rulesets> <!-- Rule sets that come bundled with PMD --> <ruleset>/rulesets/basic.xml</ruleset> <ruleset>/rulesets/braces.xml</ruleset> <ruleset>/rulesets/finalizers.xml</ruleset> <ruleset>/rulesets/imports.xml</ruleset> <ruleset>/rulesets/migrating.xml</ruleset> <ruleset>/rulesets/strings.xml</ruleset> <ruleset>/rulesets/unusedcode.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <configuration> <tags> <tag>TODO</tag> <tag>FIXME</tag> <tag>@todo</tag> <tag>@fixme</tag> <tag>@deprecated</tag> </tags> </configuration> </plugin> <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration> <issueLinkTemplate>%URL%/detail?id=%ISSUE%&can=1</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> <!-- LIBS --> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.8</version> <classifier>jdk15</classifier> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>