You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/04/07 16:27:49 UTC

[maven-clean-plugin] branch master updated: Fixed JavaDoc issues.

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

khmarbaise pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 9898845  Fixed JavaDoc issues.
9898845 is described below

commit 98988457297d772417a4486ead881ef061c7e939
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Apr 7 18:27:37 2018 +0200

    Fixed JavaDoc issues.
---
 .../org/apache/maven/plugins/clean/CleanMojo.java  | 10 ++++------
 .../apache/maven/plugins/clean/CleanMojoTest.java  | 22 ++++++++++++----------
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/clean/CleanMojo.java b/src/main/java/org/apache/maven/plugins/clean/CleanMojo.java
index 7ba67aa..1cb02be 100644
--- a/src/main/java/org/apache/maven/plugins/clean/CleanMojo.java
+++ b/src/main/java/org/apache/maven/plugins/clean/CleanMojo.java
@@ -29,17 +29,15 @@ import java.io.IOException;
 
 /**
  * Goal which cleans the build.
- * <p/>
- * <P>
+ * <p>
  * This attempts to clean a project's working directory of the files that were generated at build-time. By default, it
  * discovers and deletes the directories configured in <code>project.build.directory</code>,
  * <code>project.build.outputDirectory</code>, <code>project.build.testOutputDirectory</code>, and
  * <code>project.reporting.outputDirectory</code>.
- * </P>
- * <p/>
- * <P>
+ * </p>
+ * <p>
  * Files outside the default may also be included in the deletion by configuring the <code>filesets</code> tag.
- * </P>
+ * </p>
  *
  * @author <a href="mailto:evenisse@maven.org">Emmanuel Venisse</a>
  * @version $Id$
diff --git a/src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java b/src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java
index ac653bb..66ce5fc 100644
--- a/src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java
+++ b/src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java
@@ -55,7 +55,7 @@ public class CleanMojoTest
     /**
      * Tests the simple removal of directories
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testBasicClean()
         throws Exception
@@ -82,7 +82,7 @@ public class CleanMojoTest
     /**
      * Tests the removal of files and nested directories
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testCleanNestedStructure()
         throws Exception
@@ -107,7 +107,7 @@ public class CleanMojoTest
      * Tests that no exception is thrown when all internal variables are empty and that it doesn't
      * just remove whats there
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testCleanEmptyDirectories()
         throws Exception
@@ -135,7 +135,7 @@ public class CleanMojoTest
     /**
      * Tests the removal of files using fileset
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testFilesetsClean()
         throws Exception
@@ -171,7 +171,7 @@ public class CleanMojoTest
     /**
      * Tests the removal of a directory as file
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testCleanInvalidDirectory()
         throws Exception
@@ -200,7 +200,7 @@ public class CleanMojoTest
     /**
      * Tests the removal of a missing directory
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testMissingDirectory()
         throws Exception
@@ -221,10 +221,11 @@ public class CleanMojoTest
 
     /**
      * Test the removal of a locked file on Windows systems.
-     * <br/>
+     * <p>
      * Note: Unix systems doesn't lock any files.
+     * </p>
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testCleanLockedFile()
         throws Exception
@@ -276,10 +277,11 @@ public class CleanMojoTest
 
     /**
      * Test the removal of a locked file on Windows systems.
-     * <br/>
+     * <p>
      * Note: Unix systems doesn't lock any files.
+     * </p>
      *
-     * @throws Exception
+     * @throws Exception in case of an error.
      */
     public void testCleanLockedFileWithNoError()
         throws Exception

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.