You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Falko Modler (JIRA)" <ji...@apache.org> on 2019/04/24 14:07:00 UTC

[jira] [Commented] (MJAVADOC-584) excludePackageNames is not working as documented anymore

    [ https://issues.apache.org/jira/browse/MJAVADOC-584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16825184#comment-16825184 ] 

Falko Modler commented on MJAVADOC-584:
---------------------------------------

Same here. With 2.10.4 the following is working just fine:
{code:xml}
<excludePackageNames>
    foo.bar.internal
</excludePackageNames>
{code}
which excludes
{{foo.bar.internal.Foo.java}}
as well as
{{foo.bar.internal.baz.Foo.java}}
and
{{foo.bar.internal.baz.bing.Foo.java}}.

Now with 3.1.0 I have to configure:
{code:xml}
<excludePackageNames>
    foo.bar.internal:
    foo.bar.internal.*
</excludePackageNames>
{code}
Pretty annoying, given the 14 packages (= now 28 lines) that need to be excluded in my current project.

> excludePackageNames is not working as documented anymore
> --------------------------------------------------------
>
>                 Key: MJAVADOC-584
>                 URL: https://issues.apache.org/jira/browse/MJAVADOC-584
>             Project: Maven Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 3.1.0
>            Reporter: Thomas Mortagne
>            Priority: Minor
>
> We have the following configuration at XWiki: https://github.com/xwiki/xwiki-commons/blob/xwiki-commons-11.1/pom.xml#L1946. We don't want to produce javadoc for internal packages. This is very similar to the example given on https://maven.apache.org/plugins/maven-javadoc-plugin/examples/exclude-package-names.html.
> When I upgrade to 3.1.0 the exclude is not taken into account anymore (I get error related to classes located in internal packages). For example:
> {noformat}
> /home/hudsonagent/jenkins_root/workspace/XWiki_xwiki-commons_master/xwiki-commons-core/xwiki-commons-extension/xwiki-commons-extension-api/src/main/java/org/xwiki/extension/version/internal/DefaultVersionConstraint.java:49: error: reference not found
>  * @see org.sonatype.aether.util.version.GenericVersionConstraint
> {noformat}
> I noticed MJAVADOC-548 but since the documentation did not changed I assumed my use case was still OK.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)