How do I configure eclipse to complain about the same errors that Java 8 Javadoc tools complain about?
Since Java 8, the javadoc tool that comes with the JDK is quite a bit more picky about malformed HTML, missing parameters, and such. Eclipse’s JDT contains a Javadoc parser that can be configured through Preferences -> Java -> Compiler -> Javadoc.
Does anybody know how to configure the Eclipse Javadoc such that it complains exactly about the same errors that the JDK javadoc tool complains about?
These are the settings that I am currently using, but in particular malformed HTML does not seem to be covered here. Or maybe an extra plugin is needed just for checking the HTML in Javadoc blocks in Eclipse?
Read more here: Source link