GH-962 - Fix Javadoc creation for APT module.

Exclude the temporary type from Javadoc creation.
This commit is contained in:
Oliver Drotbohm
2024-11-25 14:55:51 +01:00
parent 9e2d96394f
commit a112e58b81
2 changed files with 9 additions and 1 deletions

View File

@@ -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>

View File

@@ -26,7 +26,7 @@ import javax.lang.model.type.TypeMirror;
* <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> {