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
A common problem when modernizing plugins is that generating Javadoc (which only happens when running with mvn clean verify -Pjenkins-release or mvn clean verify -Dset.changelist) fails on Java9+ with error: tag not supported in the generated HTML version: tt if there are any <tt> tags in the Java code (for example, in cvs-plugin as of jenkinsci/cvs-plugin@26e82b2). The solution in these cases is to replace <tt>foo</tt> with {@code foo}, but this is quite tedious.
The text was updated successfully, but these errors were encountered:
A common problem when modernizing plugins is that generating Javadoc (which only happens when running with
mvn clean verify -Pjenkins-release
ormvn clean verify -Dset.changelist
) fails on Java9+ witherror: tag not supported in the generated HTML version: tt
if there are any<tt>
tags in the Java code (for example, incvs-plugin
as of jenkinsci/cvs-plugin@26e82b2). The solution in these cases is to replace<tt>foo</tt>
with{@code foo}
, but this is quite tedious.The text was updated successfully, but these errors were encountered: