Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Jul 8, 2023
1 parent d33677e commit e30946b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1026,8 +1026,8 @@ public abstract class AbstractJavadocMojo extends AbstractMojo {
private boolean keywords;

/**
* Creates links to existing javadoc-generated documentation of external referenced classes.
* <br>
* Creates links to existing javadoc-generated documentation of external referenced classes.<p>
*
* <b>Notes</b>:
* <ol>
* <li>only used if {@code isOffline} is set to <code>false</code>.</li>
Expand All @@ -1039,12 +1039,12 @@ public abstract class AbstractJavadocMojo extends AbstractMojo {
* &lt;links&gt;
* </pre>
* will be used because <code>https://docs.oracle.com/en/java/javase/17/docs/api/element-list</code> exists.</li>
* <li>if {@link #detectLinks} is defined, the links between the project dependencies are
* <li>If {@link #detectLinks} is defined, the links between the project dependencies are
* automatically added.</li>
* <li>if {@link #detectJavaApiLink} is defined, a Java API link, based on the Java version of the
* <li>If {@link #detectJavaApiLink} is defined, a Java API link, based on the Java version of the
* project's sources, will be added automatically.</li>
* </ol>
* @see <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html#standard-doclet-options">Doclet option link</a>.
* @see <a href=https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html#standard-doclet-options>Doclet option link</a>
*/
@Parameter(property = "links")
protected ArrayList<String> links;
Expand Down Expand Up @@ -1693,7 +1693,7 @@ protected List<File> getProjectBuildOutputDirs(MavenProject p) {
}

/**
* @param mavenProject the project in which to find a classes file
* @param project the project in which to find a classes file
* @return null, the attached artifact file, or outputDirectory.
*/
protected File getClassesFile(MavenProject project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@

/**
* Fix Javadoc documentation and tags for the <code>Test Java code</code> for the project.
* @see <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/doc-comment-spec.html#where-tags-can-be-used">Where Tags Can Be Used</a>.
*
* @see <a href=https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/doc-comment-spec.html#where-tags-can-be-used>Where Tags Can Be Used</a>
* @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
* @since 2.6
*/
Expand Down

0 comments on commit e30946b

Please sign in to comment.