Skip to content

Commit

Permalink
GH-966 - Fix Javadoc creation for APT module.
Browse files Browse the repository at this point in the history
Exclude the temporary type from Javadoc creation.
  • Loading branch information
odrotbohm committed Dec 10, 2024
1 parent c4b1d9b commit 18d4e1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions spring-modulith-apt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>io.*</excludePackageNames>
</configuration>
</plugin>

</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* <a href="https://github.com/toolisticon/aptk">here</a>. Tweaks {@link #getOuterType()} to include
* {@link ElementKind#INTERFACE} in the outer class lookup to fix the issue reported
* <a href="https://github.com/toolisticon/aptk/issues/163">here</a>.</em> <br />
* Wraps a TypeElement to provide some convenience * functionality
* Wraps a TypeElement to provide some convenience functionality
*/
public class TypeElementWrapper extends ElementWrapper<TypeElement> {

Expand Down

0 comments on commit 18d4e1f

Please sign in to comment.