You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/02/23 06:32:39 UTC

[maven-plugin-testing] branch master updated: Fix javadoc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e8a3496  Fix javadoc
e8a3496 is described below

commit e8a349633f049e94a18eb85d8284ed67dc1cddbf
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Wed Feb 23 07:32:22 2022 +0100

    Fix javadoc
---
 .../src/main/java/org/apache/maven/plugin/testing/MojoRule.java       | 4 ++--
 .../java/org/apache/maven/plugin/testing/resources/TestResources.java | 2 +-
 .../java/org/apache/maven/plugin/testing/stubs/MavenProjectStub.java  | 2 --
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/MojoRule.java b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/MojoRule.java
index f335ffe..c54ba97 100644
--- a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/MojoRule.java
+++ b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/MojoRule.java
@@ -49,8 +49,8 @@ import org.junit.runners.model.Statement;
 
 /**
  * {@link TestRule} for usage with Junit-4.10ff. This is just a wrapper for an embedded 
- * {@link AbstractMojoTestCase}, so all <tt>protected</tt> methods of the TestCase are 
- * exhibited as <tt>public</tt> in the rule. You may annotate single tests methods with 
+ * {@link AbstractMojoTestCase}, so all <code>protected</code> methods of the TestCase are
+ * exhibited as <code>public</code> in the rule. You may annotate single tests methods with
  * {@link WithoutMojo} to prevent the rule from firing.
  *
  * @author Mirko Friedenhagen
diff --git a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/resources/TestResources.java b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/resources/TestResources.java
index 3417e9a..d28591e 100644
--- a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/resources/TestResources.java
+++ b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/resources/TestResources.java
@@ -72,7 +72,7 @@ public class TestResources
     /**
      * Creates new clean copy of test project directory structure. The copy is named after both the test being executed
      * and test project name, which allows the same test project can be used by multiple tests and by different
-     * instances of the same parametrized tests.<br/>
+     * instances of the same parametrized tests.<br>
      * TODO Provide alternative working directory naming for Windows, which still limits path names to ~250 charecters
      */
     public File getBasedir( String project )
diff --git a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/stubs/MavenProjectStub.java b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/stubs/MavenProjectStub.java
index a717141..aacb6e7 100644
--- a/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/stubs/MavenProjectStub.java
+++ b/maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/stubs/MavenProjectStub.java
@@ -1356,8 +1356,6 @@ public class MavenProjectStub
 
     /**
      * By default, do nothing.
-     *
-     * @see org.apache.maven.project.MavenProject#addPlugin(org.apache.maven.model.Plugin)
      */
     public void addPlugin( Plugin plugin )
     {