jira-importer commented on issue #880: URL: https://github.com/apache/maven-javadoc-plugin/issues/880#issuecomment-2957359164
**[Falko Modler](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=famod)** commented Same here. With 2.10.4 the following is working just fine: ```xml <excludePackageNames> foo.bar.internal </excludePackageNames> ``` 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: ```xml <excludePackageNames> foo.bar.internal: foo.bar.internal.* </excludePackageNames> ``` Pretty annoying, given the 14 packages (= now 28 lines) that need to be excluded in my current project. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
