Repository: maven Updated Branches: refs/heads/MNG-6185 63796a649 -> 049228ce7
[MNG-6185] Replace doclettag explanation with annotations in AbstractMojo javadoc Fix by Checkstyle reported issues Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/049228ce Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/049228ce Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/049228ce Branch: refs/heads/MNG-6185 Commit: 049228ce76927a6740500e1b750f0e8f201f2478 Parents: 63796a6 Author: rfscholte <rfscho...@apache.org> Authored: Mon Mar 27 20:22:46 2017 +0200 Committer: rfscholte <rfscho...@apache.org> Committed: Mon Mar 27 20:22:46 2017 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/maven/plugin/AbstractMojo.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/049228ce/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java ---------------------------------------------------------------------- diff --git a/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java b/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java index 8640995..6292116 100644 --- a/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java +++ b/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java @@ -84,7 +84,8 @@ import org.apache.maven.plugin.logging.SystemStreamLog; * </tr> * <tr> * <td>execute</td> - * <td>@Execute ( phase=LifecyclePhase.<phase>, goal= "<goal-name>", lifecycle="<lifecycle-id>" )</td> + * <td>@Execute + * ( phase=LifecyclePhase.<phase>, goal= "<goal-name>", lifecycle="<lifecycle-id>" )</td> * <td>No</td> * <td>When this goal is invoked, it will first invoke a parallel lifecycle, ending at the given phase. * If a goal is provided instead of a phase, that goal will be executed in isolation. @@ -127,7 +128,8 @@ import org.apache.maven.plugin.logging.SystemStreamLog; * </tr> * </table> * <p>This is only a small set of all the options. A complete list can be found at - * <a href="https://maven.apache.org/components/plugin-tools/maven-plugin-tools-annotations/index.html" target="_blank">Maven Plugin Tool for Annotations</a>. + * <a href="https://maven.apache.org/components/plugin-tools/maven-plugin-tools-annotations/index.html" target="_blank"> + * Maven Plugin Tool for Annotations</a>. * * @see <a href="https://maven.apache.org/guides/plugin/guide-java-plugin-development.html" target="_blank">Guide to Developing Java Plugins</a> * @see <a href="https://maven.apache.org/guides/mini/guide-configuring-plugins.html" target="_blank">Guide to Configuring Plug-ins</a>