Initial version of a plugin which can take HTML and turn it into the xdoc format ready for styling by the xdoc plugin.

This allows developers to use good old HTML (and some WYSIWYG tool) to edit & maintain documentation and get it included in the same site documentation as all the xdoc stuff


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jstrachan
2003-03-06 19:15:11 +00:00
parent ff28045b64
commit 4f0f367def
13 changed files with 840 additions and 0 deletions

106
html2xdoc/project.xml Normal file
View File

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>${basedir}/../project.xml</extend>
<pomVersion>3</pomVersion>
<id>maven-html2xdoc-plugin</id>
<name>Maven Html2XDoc Plug-in</name>
<currentVersion>1.0</currentVersion>
<!-- Gump integration -->
<gumpRepositoryId>jakarta</gumpRepositoryId>
<description>Creates XDoc documentation from normal HTML documentation.</description>
<shortDescription/>
<url>http://jakarta.apache.org/turbine/maven/reference/plugins/html2xdoc/</url>
<siteDirectory>/www/jakarta.apache.org/turbine/maven/reference/plugins/html2xdoc/</siteDirectory>
<repository>
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-turbine-maven/src/plugins-build/html2xdoc/</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-turbine-maven/src/plugins-build/html2xdoc/</url>
</repository>
<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>20030211.142705</version>
<url>http://jakarta.apache.org/commons/jelly/tags/xml/</url>
<properties>
<classloader>root.maven</classloader>
</properties>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-html</artifactId>
<version>SNAPSHOT</version>
<url>http://jakarta.apache.org/commons/jelly/tags/html/</url>
<properties>
<classloader>root.maven</classloader>
</properties>
</dependency>
<dependency>
<id>nekohtml</id>
<version>0.7.1</version>
<properties>
<classloader>root.maven</classloader>
</properties>
</dependency>
<!-- core dependencies which i'd have thought Maven introduced -->
<dependency>
<id>commons-logging</id>
<version>1.0.1</version>
<properties>
<classloader>root.maven</classloader>
</properties>
</dependency>
<dependency>
<id>dom4j</id>
<version>1.4-dev-8</version>
<url>http://www.dom4j.org/</url>
</dependency>
<dependency>
<id>xml-apis</id>
<version>1.0.b2</version>
<url>http://xml.apache.org/xerces2-j/</url>
</dependency>
<dependency>
<id>xerces</id>
<version>2.2.1</version>
<url>http://xml.apache.org/xerces2-j/</url>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/Test*.java</include>
</includes>
<resources>
<resource>
<directory>src/test</directory>
<includes>
<include>*.xml</include>
<include>*.html</include>
</includes>
</resource>
</resources>
</unitTest>
</build>
</project>