Support JDK-style Javadoc Tags #28
22
pom.xml
22
pom.xml
@ -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>
|
||||
delvh marked this conversation as resolved
|
||||
<head>Implementation Note:</head>
|
||||
</tag>
|
||||
</tags>
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
||||
<!-- GPG sign JAR -->
|
||||
|
Loading…
Reference in New Issue
Block a user
What does
<placement>a</placement>
do? Places it the head above, or what?It defines on which elements the tag is permitted. See the Maven Javadoc Plugin Documentation.