Out of the box, Gradle does not enable support for Java’s @apiNote, @implNote and @implSpec javadoc taglets. Would be nice if Gradle enabled that out of the box. But even in terms of manual setup, I have been unable to figure out the correct way to do that. What I have (that does not work) is:
javadoc {
...
configure( options ) {
...
tags(
'todo:X"',
'apiNote:a:"API Note:"',
'implSpec:a:"Implementation Requirements:"',
'implNote:a:"Implementation Note:"'
)
}
}
However, none of them get rendered.
Any pointers?