The following comment has been added to this issue:

     Author: Jason Horne
    Created: Wed, 7 Jan 2004 2:11 PM
       Body:
The code has changed slightly since this was originally reported, but the bug remains.

This:
        <!-- allow custom doclets -->    
        <j:if test="${context.getVariable('maven.javadoc.doclet') != null}">
          <ant:setProperty name="doclet" value="${maven.javadoc.doclet}" />
        </j:if>
        <j:if test="${context.getVariable('maven.javadoc.docletpath') != null}">
          <ant:setProperty name="doclet" value="${maven.javadoc.docletpath}" />
        </j:if>

...needs to be changed to this:

        <!-- allow custom doclets -->    
        <j:if test="${context.getVariable('maven.javadoc.doclet') != null}">
          <ant:setProperty name="doclet" value="${maven.javadoc.doclet}" />
        </j:if>
        <j:if test="${context.getVariable('maven.javadoc.docletpath') != null}">
          <ant:setProperty name="docletpath" value="${maven.javadoc.docletpath}" />
        </j:if>

---------------------------------------------------------------------
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPJAVADOC-6


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MPJAVADOC-6
    Summary: javadoc-plugin: non default doclet will not exec
       Type: Bug

     Status: Unassigned
   Priority: Minor

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

    Project: maven-javadoc-plugin

   Assignee: 
   Reporter: 

    Created: Sat, 16 Aug 2003 12:29 PM
    Updated: Wed, 7 Jan 2004 2:11 PM
Environment: Linux

Description:
antProperty doclet ist set from maven.javadoc.docletpath

plugin.jelly reads:

        <!-- allow custom doclets -->
        <j:if test="${context.getVariable('maven.dotuml.doclet') != null}">
          <ant:setProperty name="doclet" value="${maven.dotuml.doclet}" />
        </j:if>
        <j:if test="${context.getVariable('maven.dotuml.docletpath') != null}">
          <ant:setProperty name="doclet" value="${maven.dotuml.docletpath}" />
        </j:if>

must read:
        <!-- allow custom doclets -->
        <j:if test="${context.getVariable('maven.dotuml.doclet') != null}">
          <ant:setProperty name="doclet" value="${maven.dotuml.doclet}" />
        </j:if>
        <j:if test="${context.getVariable('maven.dotuml.docletpath') != null}">
          <ant:setProperty name="docletpath" value="${maven.dotuml.docletpath}" />
        </j:if>



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to