Skip to content

Commit

Permalink
allow using @implNote in JavaDoc (why is it unknown? this is standard…
Browse files Browse the repository at this point in the history
… since java 8...)
  • Loading branch information
overheadhunter committed Feb 17, 2020
1 parent 3430e17 commit a251ad2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,31 @@
</execution>
</executions>
<configuration>
<tags>
<!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven -->
<tag>
<name>apiNote</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>implSpec</name>
<placement>a</placement>
<head>Implementation Requirements:</head>
</tag>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
<tag><name>param</name></tag>
<tag><name>return</name></tag>
<tag><name>throws</name></tag>
<tag><name>since</name></tag>
<tag><name>version</name></tag>
<tag><name>serialData</name></tag>
<tag><name>see</name></tag>
</tags>
<additionalDependencies>
<additionalDependency>
<groupId>javax.annotation</groupId>
Expand Down

0 comments on commit a251ad2

Please sign in to comment.