Skip to content

Commit

Permalink
API javadoc jar should not include docs for impl classes
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj authored and m0mus committed Jun 3, 2020
1 parent 4f73a2f commit 7b5d768
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mailapijar/pom.xml
Expand Up @@ -155,6 +155,14 @@
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>com.sun.*</excludePackageNames>
</configuration>
</plugin>
</plugins>
</build>
</project>

1 comment on commit 7b5d768

@jmehrens
Copy link
Contributor

@jmehrens jmehrens commented on 7b5d768 Jun 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this change filter out the com.sun.mail.util.logging package from the JakartaMail docs or just the JakartaEE docs? That package is a little different from the other com.sun packages. In the past this was included with JavaMail API but not with Java EE API docs.

Please sign in to comment.