You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2017/12/20 09:28:47 UTC

[maven-ant-plugin] 06/18: o javadoc

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to annotated tag maven-ant-plugin-2.2
in repository https://gitbox.apache.org/repos/asf/maven-ant-plugin.git

commit 85e798260856adbf9716f040bae94e97e466066a
Author: Vincent Siveton <vs...@apache.org>
AuthorDate: Mon Apr 13 10:55:53 2009 +0000

    o javadoc
    
    git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-ant-plugin@764402 13f79535-47bb-0310-9956-ffa450edef68
---
 .../org/apache/maven/plugin/ant/AntCleanMojo.java  | 12 +++++++---
 .../java/org/apache/maven/plugin/ant/AntMojo.java  | 28 +++++++++++++---------
 2 files changed, 26 insertions(+), 14 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java b/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java
index ab4a9ac..ede253e 100644
--- a/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java
+++ b/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java
@@ -39,6 +39,10 @@ import org.codehaus.plexus.components.interactivity.InputHandler;
 public class AntCleanMojo
     extends AbstractMojo
 {
+    // ----------------------------------------------------------------------
+    // Mojo components
+    // ----------------------------------------------------------------------
+
     /**
      * The current user system settings for use in Maven.
      *
@@ -57,6 +61,10 @@ public class AntCleanMojo
      */
     private InputHandler inputHandler;
 
+    // ----------------------------------------------------------------------
+    // Mojo parameters
+    // ----------------------------------------------------------------------
+
     /**
      * The working project.
      *
@@ -74,9 +82,7 @@ public class AntCleanMojo
      */
     private boolean force;
 
-    /**
-     * @see org.apache.maven.plugin.Mojo#execute()
-     */
+    /** {@inheritDoc} */
     public void execute()
         throws MojoExecutionException
     {
diff --git a/src/main/java/org/apache/maven/plugin/ant/AntMojo.java b/src/main/java/org/apache/maven/plugin/ant/AntMojo.java
index b394e8e..c87ede7 100644
--- a/src/main/java/org/apache/maven/plugin/ant/AntMojo.java
+++ b/src/main/java/org/apache/maven/plugin/ant/AntMojo.java
@@ -42,14 +42,9 @@ import java.util.List;
 public class AntMojo
     extends AbstractMojo
 {
-    /**
-     * The project to create a build for.
-     *
-     * @parameter default-value="${project}"
-     * @required
-     * @readonly
-     */
-    private MavenProject project;
+    // ----------------------------------------------------------------------
+    // Mojo components
+    // ----------------------------------------------------------------------
 
     /**
      * Used for resolving artifacts.
@@ -65,6 +60,19 @@ public class AntMojo
      */
     private ArtifactFactory factory;
 
+    // ----------------------------------------------------------------------
+    // Mojo parameters
+    // ----------------------------------------------------------------------
+
+    /**
+     * The project to create a build for.
+     *
+     * @parameter default-value="${project}"
+     * @required
+     * @readonly
+     */
+    private MavenProject project;
+
     /**
      * The local repository where the artifacts are located.
      *
@@ -98,9 +106,7 @@ public class AntMojo
      */
     private boolean overwrite;
 
-    /**
-     * @see org.apache.maven.plugin.Mojo#execute()
-     */
+    /** {@inheritDoc} */
     public void execute()
         throws MojoExecutionException
     {

-- 
To stop receiving notification emails like this one, please contact
"commits@maven.apache.org" <co...@maven.apache.org>.