You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/04/13 12:55:53 UTC

svn commit: r764402 - in /maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant: AntCleanMojo.java AntMojo.java

Author: vsiveton
Date: Mon Apr 13 10:55:53 2009
New Revision: 764402

URL: http://svn.apache.org/viewvc?rev=764402&view=rev
Log:
o javadoc

Modified:
    maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java
    maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntMojo.java

Modified: maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java?rev=764402&r1=764401&r2=764402&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java (original)
+++ maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntCleanMojo.java Mon Apr 13 10:55:53 2009
@@ -39,6 +39,10 @@
 public class AntCleanMojo
     extends AbstractMojo
 {
+    // ----------------------------------------------------------------------
+    // Mojo components
+    // ----------------------------------------------------------------------
+
     /**
      * The current user system settings for use in Maven.
      *
@@ -57,6 +61,10 @@
      */
     private InputHandler inputHandler;
 
+    // ----------------------------------------------------------------------
+    // Mojo parameters
+    // ----------------------------------------------------------------------
+
     /**
      * The working project.
      *
@@ -74,9 +82,7 @@
      */
     private boolean force;
 
-    /**
-     * @see org.apache.maven.plugin.Mojo#execute()
-     */
+    /** {@inheritDoc} */
     public void execute()
         throws MojoExecutionException
     {

Modified: maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntMojo.java?rev=764402&r1=764401&r2=764402&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntMojo.java (original)
+++ maven/plugins/trunk/maven-ant-plugin/src/main/java/org/apache/maven/plugin/ant/AntMojo.java Mon Apr 13 10:55:53 2009
@@ -42,14 +42,9 @@
 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 @@
      */
     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 @@
      */
     private boolean overwrite;
 
-    /**
-     * @see org.apache.maven.plugin.Mojo#execute()
-     */
+    /** {@inheritDoc} */
     public void execute()
         throws MojoExecutionException
     {