Skip to content

Commit

Permalink
Tell javadoc how to interpret @implNote annotation
Browse files Browse the repository at this point in the history
Even with Java 9+, it seems the javadoc tool rejects these annotations
by default. Too bad, but it's easy to configure it here in the POM.
  • Loading branch information
ctrueden committed Jun 3, 2024
1 parent 77a486e commit d579d0a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,13 @@
<links>
<link>${scijava.javadoc.url.java}</link>
</links>
<tags>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
</configuration>
</plugin>

Expand Down

0 comments on commit d579d0a

Please sign in to comment.