maven-plugins/xdoc/project.xml
kaz 8477e3bf29 Enhanced the vdoclet plugin. Previous versions did not provide access
to the Jelly context within the vdoclet velocity templates.  Thus, as a
result, support of the maven.tasklist.taskTag was dropped and the
tasklist plugin was hardcoded to use "@todo" because there was no way to
get the value from the Jelly context.

- VDocletBean can now be passed a JellyContext which gets wrapped in the
  same JellyContextAdapter that I wrote from the Velocity taglib.  To
  access the context from a vdoclet template, use '$jellyContext'.

- Updated the taglib and tag defined in plugin.jelly to automatically
  include the current context.

- Updated the POM to include the jelly deps.  On a side note, also had
  to update the POM of the xdoc plugin as it had a dependency on the
  velocity taglib as well, and it was being loaded before the jar
  specified in this POM.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113032 13f79535-47bb-0310-9956-ffa450edef68
2003-03-03 21:18:08 +00:00

118 lines
3.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>${basedir}/../project.xml</extend>
<pomVersion>3</pomVersion>
<id>maven-xdoc-plugin</id>
<name>Maven XDoc Plug-in</name>
<currentVersion>1.3</currentVersion>
<shortDescription>Java Project Management Tools</shortDescription>
<url>http://jakarta.apache.org/turbine/maven/reference/plugins/xdoc/</url>
<siteDirectory>/www/jakarta.apache.org/turbine/maven/reference/plugins/xdoc/</siteDirectory>
<repository>
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-turbine-maven/src/plugins-build/xdoc/</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-turbine-maven/src/plugins-build/xdoc/</url>
</repository>
<developers>
<developer>
<name>dIon Gillard</name>
<id>dion</id>
<email>dion@multitask.com.au</email>
<organization>Multitask Consulting</organization>
<roles>
<role>Documentation</role>
</roles>
</developer>
<developer>
<name>Bob McWhirter</name>
<id>werken</id>
<email>bob@werken.com</email>
<organization>The Werken Company</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
<developer>
<name>Jason van Zyl</name>
<id>jvanzyl</id>
<email>jason@zenplex.com</email>
<organization>Zenplex</organization>
<roles>
<role>Architect</role>
<role>Release Manager</role>
</roles>
</developer>
<developer>
<name>Vincent Massol</name>
<id>vmassol</id>
<email>vmassol@octo.com</email>
<organization>Octo Technology</organization>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<id>ant</id>
<version>1.5.1</version>
<properties>
<classloader>root</classloader>
</properties>
</dependency>
<dependency>
<id>dom4j</id>
<version>1.4-dev-8</version>
</dependency>
<dependency>
<id>commons-grant</id>
<version>1.0-beta-4</version>
</dependency>
<dependency>
<id>commons-jelly</id>
<version>20030211.141339</version>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-jsl</artifactId>
<version>20030211.143151</version>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-log</artifactId>
<version>20030211.142821</version>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-velocity</artifactId>
<version>20030303.205659</version>
</dependency>
<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>
</dependency>
<dependency>
<id>maven</id>
<version>b5</version>
<jar>maven.jar</jar>
</dependency>
<dependency>
<id>velocity</id>
<version>1.3</version>
</dependency>
<dependency>
<id>velocity-dvsl</id>
<version>0.45</version>
</dependency>
<dependency>
<id>xml-apis</id>
<version>1.0.b2</version>
</dependency>
</dependencies>
</project>