Skip to content

Commit

Permalink
(doc) fix javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Dec 12, 2021
1 parent 3309cc2 commit a4aa7dc
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 900 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,9 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<failOnWarnings>false</failOnWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Generates documentation for the <code>Java code</code> in an <b>NON aggregator</b> project using the standard
* <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/">Javadoc Tool</a>. Note that this
* goal does require generation of sources before site generation, e.g. by invoking <tt>mvn clean deploy site</tt>.
* goal does require generation of sources before site generation, e.g. by invoking {@code mvn clean deploy site}.
*
* @author <a href="mailto:mfriedenhagen@apache.org">Mirko Friedenhagen</a>
* @since 2.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public boolean isExternalReport()
*
* <br>
* The logic is the following:
* <table summary="Can-generate-report Matrix">
* <table><caption>Can-generate-report Matrix</caption>
* <tbody>
* <tr>
* <th> isAggregator </th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ else if ( StringUtils.isNotEmpty( out.getOutput() ) )
/**
* Parse the output for 'javadoc -J-version' and return the javadoc version recognized. <br>
* Here are some output for 'javadoc -J-version' depending the JDK used:
* <table summary="Output for 'javadoc -J-version' per JDK">
* <table><caption>Output for 'javadoc -J-version' per JDK</caption>
* <tr>
* <th>JDK</th>
* <th>Output for 'javadoc -J-version'</th>
Expand Down Expand Up @@ -575,7 +575,7 @@ else if ( StringUtils.isNotEmpty( out.getOutput() ) )
* @param output for 'javadoc -J-version'
* @return the version of the javadoc for the output, only digits and dots
* @throws PatternSyntaxException if the output doesn't match with the output pattern
* <tt>(?s).*?[^a-zA-Z]([0-9]+\\.?[0-9]*)(\\.([0-9]+))?.*</tt>.
* {@code (?s).*?[^a-zA-Z]([0-9]+\\.?[0-9]*)(\\.([0-9]+))?.*}.
* @throws IllegalArgumentException if the output is null
*/
protected static String extractJavadocVersion( String output )
Expand Down Expand Up @@ -616,7 +616,7 @@ protected static String extractJavadocVersion( String output )
/**
* Parse a memory string which be used in the JVM arguments <code>-Xms</code> or <code>-Xmx</code>. <br>
* Here are some supported memory string depending the JDK used:
* <table summary="Memory argument support per JDK">
* <table><caption>Memory argument support per JDK</caption>
* <tr>
* <th>JDK</th>
* <th>Memory argument support for <code>-Xms</code> or <code>-Xmx</code></th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Generates documentation for the <code>Java Test code</code> in an <b>NON aggregator</b> project using the standard
* <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/">Javadoc Tool</a>. Note that this
* goal does require generation of test sources before site generation, e.g. by invoking
* <tt>mvn clean deploy site</tt>.
* {@code mvn clean deploy site}.
*
* @author <a href="mailto:mfriedenhagen@apache.org">Mirko Friedenhagen</a>
* @since 2.10
Expand Down
Loading

0 comments on commit a4aa7dc

Please sign in to comment.