You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2020. It is now read-only.
When one tries to generate javadocs using mvn javadoc:javadoc the following error is thrown multiple times: error: self-closing element not allowed [ERROR] * This method shows a message whenever a task gets successfully scheduled.<br />
Bug description
When one tries to generate javadocs using
mvn javadoc:javadoc
the following error is thrown multiple times:error: self-closing element not allowed [ERROR] * This method shows a message whenever a task gets successfully scheduled.<br />
This is because since Java 8 there is no support for the
\br
tag (http://mail.openjdk.java.net/pipermail/core-libs-dev/2013-July/019262.html) due to not appearing in HTML 4 specs.Proposed solution
Replace all
<br/>
with<p></p>
tagsThe text was updated successfully, but these errors were encountered: