Skip to content

Commit a112e58

Browse files
committed
GH-962 - Fix Javadoc creation for APT module.
Exclude the temporary type from Javadoc creation.
1 parent 9e2d963 commit a112e58

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

spring-modulith-apt/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@
125125
</configuration>
126126
</plugin>
127127

128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-javadoc-plugin</artifactId>
131+
<configuration>
132+
<excludePackageNames>io.*</excludePackageNames>
133+
</configuration>
134+
</plugin>
135+
128136
</plugins>
129137
</build>
130138

spring-modulith-apt/src/main/java/io/toolisticon/aptk/tools/wrapper/TypeElementWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* <a href="https://github.com/toolisticon/aptk">here</a>. Tweaks {@link #getOuterType()} to include
2727
* {@link ElementKind#INTERFACE} in the outer class lookup to fix the issue reported
2828
* <a href="https://github.com/toolisticon/aptk/issues/163">here</a>.</em> <br />
29-
* Wraps a TypeElement to provide some convenience * functionality
29+
* Wraps a TypeElement to provide some convenience functionality
3030
*/
3131
public class TypeElementWrapper extends ElementWrapper<TypeElement> {
3232

0 commit comments

Comments
 (0)