[ https://issues.apache.org/jira/browse/MJAVADOC-564?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17957937#comment-17957937 ]
Olivier Lamy commented on MJAVADOC-564: --------------------------------------- This project has moved from Jira to GitHub Issues. This issue was migrated to [apache/maven-javadoc-plugin#869|https://github.com/apache/maven-javadoc-plugin/issues/869]. Please visit the GitHub issue to view further activity, add comments, or subscribe to receive notifications. > Generated javadoc tags in fix goal are not in proper order > ---------------------------------------------------------- > > Key: MJAVADOC-564 > URL: https://issues.apache.org/jira/browse/MJAVADOC-564 > Project: Maven Javadoc Plugin (Moved to GitHub Issues) > Issue Type: Bug > Components: fix > Affects Versions: 2.10.4, 3.0.1 > Reporter: Richard Sand > Priority: Major > > The javadoc:fix goal is placing/moving the @throws tags to the bottom of the > tags, which isn't the proper order if there is a since tag. > Example: > {{ /**}} > {{ * <p>initialize.</p>}} > {{ *}} > {{ * @param keyClass a \{@link java.lang.Class} object.}} > {{ * @param valueClass a \{@link java.lang.Class} object.}} > {{ * @throws com.idfconnect.ssorest.cache.CacheException if any.}} > {{ * @since 3.1.4}} > {{ */}} > Get changed to: > {{ /**}} > {{ * <p>initialize.</p>}} > {{ *}} > {{ * @param keyClass a \{@link java.lang.Class} object.}} > {{ * @param valueClass a \{@link java.lang.Class} object.}} > {{ * @since 3.1.4}} > {{ * @throws com.idfconnect.ssorest.cache.CacheException if any.}} > {{ */}} > The exact order of tags is documented here for reference: > [https://www.oracle.com/technetwork/java/javase/documentation/index-137868.html#orderoftags] > > > > -- This message was sent by Atlassian Jira (v8.20.10#820010)