Support JDK-style Javadoc tags

pull/28/head
Kai S. K. Engelbart 2021-11-24 11:30:36 +01:00
parent e67b64678b
commit 6bf9e1097a
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13
1 changed files with 22 additions and 0 deletions

22
pom.xml
View File

@ -120,6 +120,28 @@
</goals>
</execution>
</executions>
<!-- Support JDK-style Javadoc tags -->
<configuration>
<tags>
<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>
</tags>
</configuration>
</plugin>
<!-- GPG sign JAR -->