You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Peter Hayes (JIRA)" <ji...@codehaus.org> on 2008/04/24 19:10:48 UTC

[jira] Created: (MJAVADOC-183) Aggregate javadoc does not process the src/main/javadoc directories

Aggregate javadoc does not process the src/main/javadoc directories
-------------------------------------------------------------------

                 Key: MJAVADOC-183
                 URL: http://jira.codehaus.org/browse/MJAVADOC-183
             Project: Maven 2.x Javadoc Plugin
          Issue Type: Bug
    Affects Versions: 2.4
         Environment: Windows XP, Maven 2.0.9
            Reporter: Peter Hayes
            Priority: Critical
         Attachments: javadoc-aggregate.zip

When running the javadoc plugin in aggregate mode, the plugin ignores the src/main/javadoc directory of the child module.

*options file when running in non-aggregate*

{quote}
-classpath 'C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
 -encoding
'ISO-8859-1'
-protected
-sourcepath
'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java;C:/dev/maven/bugs/javadoc-aggregate/child/src/main/javadoc'
-author
-bottom
'Copyright &#169; 2008. All Rights Reserved.'
-charset
'ISO-8859-1'
-d
'C:/dev/maven/bugs/javadoc-aggregate/child/target/site/apidocs'
-doctitle
'child 1.0-SNAPSHOT API'
-use
-version
-windowtitle
'child 1.0-SNAPSHOT API'
{quote}

*options file when running in aggregate*

{quote}
-classpath 'C:/dev/maven/bugs/javadoc-aggregate/target/classes;C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
 -encoding
'ISO-8859-1'
-protected
-sourcepath
'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java'
-author
-bottom
'Copyright &#169; 2008. All Rights Reserved.'
-charset
'ISO-8859-1'
-d
'C:/dev/maven/bugs/javadoc-aggregate/target/site/apidocs'
-doctitle
'aggregate javadoc parent 1.0-SNAPSHOT API'
-use
-version
-windowtitle
'aggregate javadoc parent 1.0-SNAPSHOT API'
{quote}

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MJAVADOC-183) Aggregate javadoc does not process the src/main/javadoc directories

Posted by "Vincent Siveton (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MJAVADOC-183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=135238#action_135238 ] 

Vincent Siveton commented on MJAVADOC-183:
------------------------------------------

fixed in r657353, snapshot 2.5 deployed

> Aggregate javadoc does not process the src/main/javadoc directories
> -------------------------------------------------------------------
>
>                 Key: MJAVADOC-183
>                 URL: http://jira.codehaus.org/browse/MJAVADOC-183
>             Project: Maven 2.x Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4
>         Environment: Windows XP, Maven 2.0.9
>            Reporter: Peter Hayes
>            Priority: Critical
>         Attachments: javadoc-aggregate.zip
>
>
> When running the javadoc plugin in aggregate mode, the plugin ignores the src/main/javadoc directory of the child module.
> *options file when running in non-aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java;C:/dev/maven/bugs/javadoc-aggregate/child/src/main/javadoc'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/child/target/site/apidocs'
> -doctitle
> 'child 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'child 1.0-SNAPSHOT API'
> {quote}
> *options file when running in aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/target/classes;C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/target/site/apidocs'
> -doctitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> {quote}

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MJAVADOC-183) Aggregate javadoc does not process the src/main/javadoc directories

Posted by "Heinrich Nirschl (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MJAVADOC-183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=135259#action_135259 ] 

Heinrich Nirschl commented on MJAVADOC-183:
-------------------------------------------

Thanks, the version 2.5-20080517.141532-2 is working again.

> Aggregate javadoc does not process the src/main/javadoc directories
> -------------------------------------------------------------------
>
>                 Key: MJAVADOC-183
>                 URL: http://jira.codehaus.org/browse/MJAVADOC-183
>             Project: Maven 2.x Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4
>         Environment: Windows XP, Maven 2.0.9
>            Reporter: Peter Hayes
>            Assignee: Vincent Siveton
>            Priority: Critical
>             Fix For: 2.5
>
>         Attachments: javadoc-aggregate.zip
>
>
> When running the javadoc plugin in aggregate mode, the plugin ignores the src/main/javadoc directory of the child module.
> *options file when running in non-aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java;C:/dev/maven/bugs/javadoc-aggregate/child/src/main/javadoc'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/child/target/site/apidocs'
> -doctitle
> 'child 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'child 1.0-SNAPSHOT API'
> {quote}
> *options file when running in aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/target/classes;C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/target/site/apidocs'
> -doctitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> {quote}

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MJAVADOC-183) Aggregate javadoc does not process the src/main/javadoc directories

Posted by "Heinrich Nirschl (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MJAVADOC-183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=135235#action_135235 ] 

Heinrich Nirschl commented on MJAVADOC-183:
-------------------------------------------

See also MJAVADOC-118. It has worked in 2.3, and is now broken again in 2.4.

> Aggregate javadoc does not process the src/main/javadoc directories
> -------------------------------------------------------------------
>
>                 Key: MJAVADOC-183
>                 URL: http://jira.codehaus.org/browse/MJAVADOC-183
>             Project: Maven 2.x Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4
>         Environment: Windows XP, Maven 2.0.9
>            Reporter: Peter Hayes
>            Priority: Critical
>         Attachments: javadoc-aggregate.zip
>
>
> When running the javadoc plugin in aggregate mode, the plugin ignores the src/main/javadoc directory of the child module.
> *options file when running in non-aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java;C:/dev/maven/bugs/javadoc-aggregate/child/src/main/javadoc'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/child/target/site/apidocs'
> -doctitle
> 'child 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'child 1.0-SNAPSHOT API'
> {quote}
> *options file when running in aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/target/classes;C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/target/site/apidocs'
> -doctitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> {quote}

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (MJAVADOC-183) Aggregate javadoc does not process the src/main/javadoc directories

Posted by "Vincent Siveton (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MJAVADOC-183?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vincent Siveton closed MJAVADOC-183.
------------------------------------

         Assignee: Vincent Siveton
       Resolution: Fixed
    Fix Version/s: 2.5

Forgot to fix it ;)

> Aggregate javadoc does not process the src/main/javadoc directories
> -------------------------------------------------------------------
>
>                 Key: MJAVADOC-183
>                 URL: http://jira.codehaus.org/browse/MJAVADOC-183
>             Project: Maven 2.x Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4
>         Environment: Windows XP, Maven 2.0.9
>            Reporter: Peter Hayes
>            Assignee: Vincent Siveton
>            Priority: Critical
>             Fix For: 2.5
>
>         Attachments: javadoc-aggregate.zip
>
>
> When running the javadoc plugin in aggregate mode, the plugin ignores the src/main/javadoc directory of the child module.
> *options file when running in non-aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java;C:/dev/maven/bugs/javadoc-aggregate/child/src/main/javadoc'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/child/target/site/apidocs'
> -doctitle
> 'child 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'child 1.0-SNAPSHOT API'
> {quote}
> *options file when running in aggregate*
> {quote}
> -classpath 'C:/dev/maven/bugs/javadoc-aggregate/target/classes;C:/dev/maven/bugs/javadoc-aggregate/child/target/classes'
>  -encoding
> 'ISO-8859-1'
> -protected
> -sourcepath
> 'C:/dev/maven/bugs/javadoc-aggregate/child/src/main/java'
> -author
> -bottom
> 'Copyright &#169; 2008. All Rights Reserved.'
> -charset
> 'ISO-8859-1'
> -d
> 'C:/dev/maven/bugs/javadoc-aggregate/target/site/apidocs'
> -doctitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> -use
> -version
> -windowtitle
> 'aggregate javadoc parent 1.0-SNAPSHOT API'
> {quote}

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira