ltheussl 996521b9a0 PR: MAVEN-1345
Upgrade dom4j to our custom version (see MAVENUPLOAD-953).


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@422975 13f79535-47bb-0310-9956-ffa450edef68
2006-07-18 05:42:51 +00:00

150 lines
5.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
<extend>../plugins-parent/project.xml</extend>
<pomVersion>3</pomVersion>
<id>maven-html2xdoc-plugin</id>
<name>Maven Html2XDoc Plugin</name>
<currentVersion>1.5-SNAPSHOT</currentVersion>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<description>Creates XDoc documentation from normal HTML documentation.</description>
<shortDescription>HTML to xdoc transformer</shortDescription>
<issueTrackingUrl>http://jira.codehaus.org/browse/MPHTMLXDOC</issueTrackingUrl>
<versions>
<version>
<id>1.2</id>
<name>1.2</name>
<tag>MAVEN_HTML2XDOC_1_2</tag>
</version>
<version>
<id>1.3</id>
<name>1.3</name>
<tag>MAVEN_HTML2XDOC_1_3</tag>
</version>
<version>
<id>1.3.1</id>
<name>1.3.1</name>
<tag>MAVEN_HTML2XDOC_1_3_1</tag>
</version>
<version>
<id>1.4</id>
<name>1.4</name>
<tag>MAVEN_HTML2XDOC_1_4</tag>
</version>
</versions>
<developers>
<developer>
<name>James Strachan</name>
<id>jstrachan</id>
<email>jstrachan@apache.org</email>
<organization>SpiritSoft, Inc.</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-xml</artifactId>
<version>1.1</version>
<url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-html</artifactId>
<version>1.0</version>
<url>http://jakarta.apache.org/commons/jelly/tags/html/</url>
</dependency>
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>0.7.7</version>
</dependency>
<!-- core dependencies which i'd have thought Maven introduced -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>maven</groupId>
<artifactId>dom4j</artifactId>
<version>1.7-20060614</version>
<url>http://www.dom4j.org/</url>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1-beta-9</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.3.03</version>
<url>http://xml.apache.org/commons/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<version>1.1</version>
<url>http://xml.apache.org/commons/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.0</version>
<url>http://xerces.apache.org/xerces2-j/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
</dependencies>
<build>
<unitTest>
<resources>
<resource>
<targetPath>org/apache/maven/html2xdoc</targetPath>
<directory>src/test/org/apache/maven/html2xdoc/</directory>
<includes>
<include>**/*.html</include>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<includes>
<include>**/*Test*.java</include>
</includes>
</unitTest>
</build>
</project>