Uploaded image for project: 'Maven Javadoc Plugin'
  1. Maven Javadoc Plugin
  2. MJAVADOC-564

Generated javadoc tags in fix goal are not in proper order

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 2.10.4, 3.0.1
    • None
    • fix
    • None

    Description

      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

       

       

       

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            rsand Richard Sand
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: