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

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


The following commit(s) were added to refs/heads/master by this push:
     new d4bfe870 chore: remove junit 3 references (#1279)
d4bfe870 is described below

commit d4bfe8707bdea22f86fe326a1f3bdf9f1bfcd811
Author: Sandra Parsick <[email protected]>
AuthorDate: Tue Dec 2 12:46:19 2025 +0000

    chore: remove junit 3 references (#1279)
    
    Signed-off-by: Sandra Parsick <[email protected]>
---
 src/it/projects/MJAVADOC-180/module1/pom.xml       |  7 +----
 .../test/java/edu/jhu/library/Mjavadoc180Test.java |  3 --
 src/it/projects/MJAVADOC-257/pom.xml               |  9 ------
 src/it/projects/MJAVADOC-259/pom.xml               |  9 ------
 .../src/test/java/com/mycompany/myapp/AppTest.java | 35 +--------------------
 src/it/projects/MJAVADOC-262/pom.xml               |  8 -----
 .../src/test/java/com/mycompany/myapp/AppTest.java | 35 +--------------------
 src/it/projects/MJAVADOC-278/pom.xml               |  9 ------
 .../src/test/java/com/mycompany/myapp/AppTest.java | 36 ++--------------------
 src/it/projects/MJAVADOC-369/pom.xml               |  9 ------
 .../src/test/java/com/mycompany/myapp/AppTest.java | 35 +--------------------
 src/it/projects/MJAVADOC-414/pom.xml               |  9 ------
 .../src/test/java/mjavadoc414/test/AppTest.java    | 11 +------
 .../test/java/com/mycompany/myapp/AppATest.java    | 33 --------------------
 src/it/projects/MJAVADOC-444/moduleB/pom.xml       |  9 ------
 .../test/java/com/mycompany/myapp/AppBTest.java    | 33 --------------------
 .../module1/pom.xml                                |  6 ----
 .../test/java/edu/jhu/library/Mjavadoc180Test.java |  3 --
 .../additional-dependencies-non-aggregate/pom.xml  | 11 -------
 .../additional-dependencies/module1/pom.xml        |  7 -----
 .../test/java/edu/jhu/library/Mjavadoc180Test.java |  3 --
 src/it/projects/additional-dependencies/pom.xml    | 11 -------
 .../maven/plugins/mjavadoc/it/moda/AppTest.java    | 33 --------------------
 .../maven/plugins/mjavadoc/it/modb/AppTest.java    | 33 --------------------
 src/it/projects/dependencySource-1/pom.xml         |  9 ------
 .../MJAVADOC-280-2-distro/pom.xml                  |  7 -----
 .../maven/plugins/mjavadoc/it/moda/AppTest.java    | 33 --------------------
 .../maven/plugins/mjavadoc/it/modb/AppTest.java    | 33 --------------------
 .../MJAVADOC-280-2-projects/pom.xml                |  9 ------
 .../maven/plugins/mjavadoc/it/moda/AppTest.java    | 34 +-------------------
 .../maven/plugins/mjavadoc/it/modb/AppTest.java    | 33 --------------------
 src/it/projects/dependencySource-3/pom.xml         |  9 ------
 .../MJAVADOC-280-4-distro/pom.xml                  |  7 -----
 .../maven/plugins/mjavadoc/it/moda/AppTest.java    | 33 --------------------
 .../maven/plugins/mjavadoc/it/modb/AppTest.java    | 34 +-------------------
 .../MJAVADOC-280-4-projects/pom.xml                |  9 ------
 .../unit/pom-test/src/test/java/maven/AppTest.java | 35 +--------------------
 .../src/test/java/maven/AppTest.java               | 35 +--------------------
 38 files changed, 11 insertions(+), 706 deletions(-)

diff --git a/src/it/projects/MJAVADOC-180/module1/pom.xml 
b/src/it/projects/MJAVADOC-180/module1/pom.xml
index d6d91fde..31da78bc 100644
--- a/src/it/projects/MJAVADOC-180/module1/pom.xml
+++ b/src/it/projects/MJAVADOC-180/module1/pom.xml
@@ -38,11 +38,6 @@
       <scope>test</scope>
     </dependency>
 
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
+
   </dependencies>
 </project>
diff --git 
a/src/it/projects/MJAVADOC-180/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
 
b/src/it/projects/MJAVADOC-180/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
index cabf74bb..418d37f7 100644
--- 
a/src/it/projects/MJAVADOC-180/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
+++ 
b/src/it/projects/MJAVADOC-180/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
@@ -19,7 +19,6 @@ package edu.jhu.library;
  * under the License.
  */
 
-import junit.framework.TestCase;
 import org.dbunit.database.IDatabaseConnection;
 
 /**
@@ -30,7 +29,6 @@ import org.dbunit.database.IDatabaseConnection;
  * To change this template use File | Settings | File Templates.
  */
 public class Mjavadoc180Test
-    extends TestCase
 {
     /**
      * This is some test javadoc.  This test method has a phony dependency on 
DB Unit.
@@ -39,6 +37,5 @@ public class Mjavadoc180Test
     {
         IDatabaseConnection phony = null;
         final HelloWorld hw = new HelloWorld();
-        assertTrue( "Hello World".equals( hw.hello( "Hello World" ) ) );
     }
 }
diff --git a/src/it/projects/MJAVADOC-257/pom.xml 
b/src/it/projects/MJAVADOC-257/pom.xml
index 4f76bf24..781812fb 100644
--- a/src/it/projects/MJAVADOC-257/pom.xml
+++ b/src/it/projects/MJAVADOC-257/pom.xml
@@ -37,15 +37,6 @@
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git a/src/it/projects/MJAVADOC-259/pom.xml 
b/src/it/projects/MJAVADOC-259/pom.xml
index e6f8674b..9cabeccd 100644
--- a/src/it/projects/MJAVADOC-259/pom.xml
+++ b/src/it/projects/MJAVADOC-259/pom.xml
@@ -36,15 +36,6 @@
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git 
a/src/it/projects/MJAVADOC-259/src/test/java/com/mycompany/myapp/AppTest.java 
b/src/it/projects/MJAVADOC-259/src/test/java/com/mycompany/myapp/AppTest.java
index d9ee20ba..b2e7456d 100644
--- 
a/src/it/projects/MJAVADOC-259/src/test/java/com/mycompany/myapp/AppTest.java
+++ 
b/src/it/projects/MJAVADOC-259/src/test/java/com/mycompany/myapp/AppTest.java
@@ -19,39 +19,6 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/MJAVADOC-262/pom.xml 
b/src/it/projects/MJAVADOC-262/pom.xml
index d4aab0d8..3cdc9341 100644
--- a/src/it/projects/MJAVADOC-262/pom.xml
+++ b/src/it/projects/MJAVADOC-262/pom.xml
@@ -34,14 +34,6 @@
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git 
a/src/it/projects/MJAVADOC-262/src/test/java/com/mycompany/myapp/AppTest.java 
b/src/it/projects/MJAVADOC-262/src/test/java/com/mycompany/myapp/AppTest.java
index d9ee20ba..b2e7456d 100644
--- 
a/src/it/projects/MJAVADOC-262/src/test/java/com/mycompany/myapp/AppTest.java
+++ 
b/src/it/projects/MJAVADOC-262/src/test/java/com/mycompany/myapp/AppTest.java
@@ -19,39 +19,6 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/MJAVADOC-278/pom.xml 
b/src/it/projects/MJAVADOC-278/pom.xml
index e85cdc81..f60a9d35 100644
--- a/src/it/projects/MJAVADOC-278/pom.xml
+++ b/src/it/projects/MJAVADOC-278/pom.xml
@@ -36,15 +36,6 @@
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git 
a/src/it/projects/MJAVADOC-278/src/test/java/com/mycompany/myapp/AppTest.java 
b/src/it/projects/MJAVADOC-278/src/test/java/com/mycompany/myapp/AppTest.java
index d9ee20ba..bf5c0c1a 100644
--- 
a/src/it/projects/MJAVADOC-278/src/test/java/com/mycompany/myapp/AppTest.java
+++ 
b/src/it/projects/MJAVADOC-278/src/test/java/com/mycompany/myapp/AppTest.java
@@ -19,39 +19,7 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
+
diff --git a/src/it/projects/MJAVADOC-369/pom.xml 
b/src/it/projects/MJAVADOC-369/pom.xml
index 33776f90..ba6d6142 100644
--- a/src/it/projects/MJAVADOC-369/pom.xml
+++ b/src/it/projects/MJAVADOC-369/pom.xml
@@ -36,15 +36,6 @@
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <plugins>
         <plugin>
diff --git 
a/src/it/projects/MJAVADOC-369/src/test/java/com/mycompany/myapp/AppTest.java 
b/src/it/projects/MJAVADOC-369/src/test/java/com/mycompany/myapp/AppTest.java
index d9ee20ba..b2e7456d 100644
--- 
a/src/it/projects/MJAVADOC-369/src/test/java/com/mycompany/myapp/AppTest.java
+++ 
b/src/it/projects/MJAVADOC-369/src/test/java/com/mycompany/myapp/AppTest.java
@@ -19,39 +19,6 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/MJAVADOC-414/pom.xml 
b/src/it/projects/MJAVADOC-414/pom.xml
index 5d529717..e45d04c5 100644
--- a/src/it/projects/MJAVADOC-414/pom.xml
+++ b/src/it/projects/MJAVADOC-414/pom.xml
@@ -33,15 +33,6 @@
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git 
a/src/it/projects/MJAVADOC-414/src/test/java/mjavadoc414/test/AppTest.java 
b/src/it/projects/MJAVADOC-414/src/test/java/mjavadoc414/test/AppTest.java
index 89b2f82f..c2f7542d 100644
--- a/src/it/projects/MJAVADOC-414/src/test/java/mjavadoc414/test/AppTest.java
+++ b/src/it/projects/MJAVADOC-414/src/test/java/mjavadoc414/test/AppTest.java
@@ -19,19 +19,10 @@ package mjavadoc414.test;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
 import mjavadoc414.App;
 
-public class AppTest extends TestCase
+public class AppTest
 {
-
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
     /**
      * Tests {@link mjavadoc414.App}.
      */
diff --git 
a/src/it/projects/MJAVADOC-444/moduleA/src/test/java/com/mycompany/myapp/AppATest.java
 
b/src/it/projects/MJAVADOC-444/moduleA/src/test/java/com/mycompany/myapp/AppATest.java
index f54bad87..f3edc41d 100644
--- 
a/src/it/projects/MJAVADOC-444/moduleA/src/test/java/com/mycompany/myapp/AppATest.java
+++ 
b/src/it/projects/MJAVADOC-444/moduleA/src/test/java/com/mycompany/myapp/AppATest.java
@@ -19,39 +19,6 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppATest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppATest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppATest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/MJAVADOC-444/moduleB/pom.xml 
b/src/it/projects/MJAVADOC-444/moduleB/pom.xml
index c0538308..8b4c2d40 100644
--- a/src/it/projects/MJAVADOC-444/moduleB/pom.xml
+++ b/src/it/projects/MJAVADOC-444/moduleB/pom.xml
@@ -29,13 +29,4 @@
   <artifactId>mjavadoc-444-moduleB</artifactId>
   <packaging>jar</packaging>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
 </project>
diff --git 
a/src/it/projects/MJAVADOC-444/moduleB/src/test/java/com/mycompany/myapp/AppBTest.java
 
b/src/it/projects/MJAVADOC-444/moduleB/src/test/java/com/mycompany/myapp/AppBTest.java
index e7c57f58..0c302a31 100644
--- 
a/src/it/projects/MJAVADOC-444/moduleB/src/test/java/com/mycompany/myapp/AppBTest.java
+++ 
b/src/it/projects/MJAVADOC-444/moduleB/src/test/java/com/mycompany/myapp/AppBTest.java
@@ -19,39 +19,6 @@ package com.mycompany.myapp;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppBTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppBTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppBTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git 
a/src/it/projects/additional-dependencies-non-aggregate/module1/pom.xml 
b/src/it/projects/additional-dependencies-non-aggregate/module1/pom.xml
index 4e07dda5..8079d650 100644
--- a/src/it/projects/additional-dependencies-non-aggregate/module1/pom.xml
+++ b/src/it/projects/additional-dependencies-non-aggregate/module1/pom.xml
@@ -43,11 +43,5 @@
       <scope>test</scope>
     </dependency>
 
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>
diff --git 
a/src/it/projects/additional-dependencies-non-aggregate/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
 
b/src/it/projects/additional-dependencies-non-aggregate/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
index 04bbcda9..622fa495 100644
--- 
a/src/it/projects/additional-dependencies-non-aggregate/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
+++ 
b/src/it/projects/additional-dependencies-non-aggregate/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
@@ -19,7 +19,6 @@ package edu.jhu.library;
  * under the License.
  */
 
-import junit.framework.TestCase;
 import org.dbunit.database.IDatabaseConnection;
 
 /**
@@ -30,7 +29,6 @@ import org.dbunit.database.IDatabaseConnection;
  * To change this template use File | Settings | File Templates.
  */
 public class Mjavadoc180Test
-    extends TestCase
 {
     /**
      * This is some test javadoc.  This test method has a phony dependency on 
DB Unit.
@@ -39,6 +37,5 @@ public class Mjavadoc180Test
     {
         IDatabaseConnection phony = null;
         final HelloWorld hw = new HelloWorld();
-        assertTrue( "Hello World".equals( hw.hello( "Hello World" ) ) );
     }
 }
diff --git a/src/it/projects/additional-dependencies-non-aggregate/pom.xml 
b/src/it/projects/additional-dependencies-non-aggregate/pom.xml
index 746d9160..0dffc27f 100644
--- a/src/it/projects/additional-dependencies-non-aggregate/pom.xml
+++ b/src/it/projects/additional-dependencies-non-aggregate/pom.xml
@@ -54,17 +54,6 @@
     </plugins>
   </build>
 
-  <!--
-  <dependencies>
-    <dependency>
-      <groupId>geronimo-spec</groupId>
-      <artifactId>geronimo-spec-jta</artifactId>
-      <version>1.0.1B-rc4</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
-  -->
-
   <reporting>
     <plugins>
       <plugin>
diff --git a/src/it/projects/additional-dependencies/module1/pom.xml 
b/src/it/projects/additional-dependencies/module1/pom.xml
index 77fbd24f..255be62a 100644
--- a/src/it/projects/additional-dependencies/module1/pom.xml
+++ b/src/it/projects/additional-dependencies/module1/pom.xml
@@ -48,12 +48,5 @@
       <version>2.2</version>
       <scope>test</scope>
     </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>
diff --git 
a/src/it/projects/additional-dependencies/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
 
b/src/it/projects/additional-dependencies/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
index 04bbcda9..622fa495 100644
--- 
a/src/it/projects/additional-dependencies/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
+++ 
b/src/it/projects/additional-dependencies/module1/src/test/java/edu/jhu/library/Mjavadoc180Test.java
@@ -19,7 +19,6 @@ package edu.jhu.library;
  * under the License.
  */
 
-import junit.framework.TestCase;
 import org.dbunit.database.IDatabaseConnection;
 
 /**
@@ -30,7 +29,6 @@ import org.dbunit.database.IDatabaseConnection;
  * To change this template use File | Settings | File Templates.
  */
 public class Mjavadoc180Test
-    extends TestCase
 {
     /**
      * This is some test javadoc.  This test method has a phony dependency on 
DB Unit.
@@ -39,6 +37,5 @@ public class Mjavadoc180Test
     {
         IDatabaseConnection phony = null;
         final HelloWorld hw = new HelloWorld();
-        assertTrue( "Hello World".equals( hw.hello( "Hello World" ) ) );
     }
 }
diff --git a/src/it/projects/additional-dependencies/pom.xml 
b/src/it/projects/additional-dependencies/pom.xml
index 48802b35..cce46921 100644
--- a/src/it/projects/additional-dependencies/pom.xml
+++ b/src/it/projects/additional-dependencies/pom.xml
@@ -52,17 +52,6 @@
     </plugins>
   </build>
 
-  <!--
-  <dependencies>
-    <dependency>
-      <groupId>geronimo-spec</groupId>
-      <artifactId>geronimo-spec-jta</artifactId>
-      <version>1.0.1B-rc4</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
-  -->
-
   <reporting>
     <plugins>
       <plugin>
diff --git 
a/src/it/projects/dependencySource-1/MJAVADOC-280-1-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
 
b/src/it/projects/dependencySource-1/MJAVADOC-280-1-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
index dd7b1928..abf67eb5 100644
--- 
a/src/it/projects/dependencySource-1/MJAVADOC-280-1-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
+++ 
b/src/it/projects/dependencySource-1/MJAVADOC-280-1-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.moda;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git 
a/src/it/projects/dependencySource-1/MJAVADOC-280-1-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
 
b/src/it/projects/dependencySource-1/MJAVADOC-280-1-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
index 6ebe15ed..3c652a48 100644
--- 
a/src/it/projects/dependencySource-1/MJAVADOC-280-1-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
+++ 
b/src/it/projects/dependencySource-1/MJAVADOC-280-1-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.modb;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/dependencySource-1/pom.xml 
b/src/it/projects/dependencySource-1/pom.xml
index 5215e80d..ed83e554 100644
--- a/src/it/projects/dependencySource-1/pom.xml
+++ b/src/it/projects/dependencySource-1/pom.xml
@@ -38,15 +38,6 @@ under the License.
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <pluginManagement>
       <plugins>
diff --git a/src/it/projects/dependencySource-2/MJAVADOC-280-2-distro/pom.xml 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-distro/pom.xml
index c416f3b7..6acf0fea 100644
--- a/src/it/projects/dependencySource-2/MJAVADOC-280-2-distro/pom.xml
+++ b/src/it/projects/dependencySource-2/MJAVADOC-280-2-distro/pom.xml
@@ -44,13 +44,6 @@ under the License.
       <version>${project.version}</version>
     </dependency>
     
-    <!-- Only needed for javadoc generation. -->
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
   
   <build>
diff --git 
a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
index dd7b1928..abf67eb5 100644
--- 
a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
+++ 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.moda;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git 
a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
index 6ebe15ed..3c652a48 100644
--- 
a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
+++ 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/MJAVADOC-280-2-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.modb;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/pom.xml 
b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/pom.xml
index 843d88a1..0bcf2cbf 100644
--- a/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/pom.xml
+++ b/src/it/projects/dependencySource-2/MJAVADOC-280-2-projects/pom.xml
@@ -33,15 +33,6 @@ under the License.
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <modules>
     <module>MJAVADOC-280-2-modA</module>
     <module>MJAVADOC-280-2-modB</module>
diff --git 
a/src/it/projects/dependencySource-3/MJAVADOC-280-3-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
 
b/src/it/projects/dependencySource-3/MJAVADOC-280-3-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
index dd7b1928..ac2b19ce 100644
--- 
a/src/it/projects/dependencySource-3/MJAVADOC-280-3-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
+++ 
b/src/it/projects/dependencySource-3/MJAVADOC-280-3-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
@@ -19,39 +19,7 @@ package org.apache.maven.plugins.mjavadoc.it.moda;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
+
diff --git 
a/src/it/projects/dependencySource-3/MJAVADOC-280-3-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
 
b/src/it/projects/dependencySource-3/MJAVADOC-280-3-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
index 6ebe15ed..3c652a48 100644
--- 
a/src/it/projects/dependencySource-3/MJAVADOC-280-3-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
+++ 
b/src/it/projects/dependencySource-3/MJAVADOC-280-3-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.modb;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git a/src/it/projects/dependencySource-3/pom.xml 
b/src/it/projects/dependencySource-3/pom.xml
index b177c511..de9883bd 100644
--- a/src/it/projects/dependencySource-3/pom.xml
+++ b/src/it/projects/dependencySource-3/pom.xml
@@ -38,15 +38,6 @@ under the License.
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  
   <build>
     <pluginManagement>
       <plugins>
diff --git a/src/it/projects/dependencySource-4/MJAVADOC-280-4-distro/pom.xml 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-distro/pom.xml
index 9783c541..e9c40e6a 100644
--- a/src/it/projects/dependencySource-4/MJAVADOC-280-4-distro/pom.xml
+++ b/src/it/projects/dependencySource-4/MJAVADOC-280-4-distro/pom.xml
@@ -41,13 +41,6 @@ under the License.
       <version>${project.version}</version>
     </dependency>
     
-    <!-- Only needed for javadoc generation. -->
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
   
   <build>
diff --git 
a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
index dd7b1928..abf67eb5 100644
--- 
a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
+++ 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modA/src/test/java/org/apache/maven/plugins/mjavadoc/it/moda/AppTest.java
@@ -19,39 +19,6 @@ package org.apache.maven.plugins.mjavadoc.it.moda;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git 
a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
index 6ebe15ed..e454112d 100644
--- 
a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
+++ 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/MJAVADOC-280-4-modB/src/test/java/org/apache/maven/plugins/mjavadoc/it/modb/AppTest.java
@@ -19,39 +19,7 @@ package org.apache.maven.plugins.mjavadoc.it.modb;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
 public class AppTest
-    extends TestCase
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( final String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
+
diff --git a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/pom.xml 
b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/pom.xml
index 3c9a89d3..6478409e 100644
--- a/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/pom.xml
+++ b/src/it/projects/dependencySource-4/MJAVADOC-280-4-projects/pom.xml
@@ -35,15 +35,6 @@ under the License.
     <maven.compiler.target>@maven.compiler.target@</maven.compiler.target>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <modules>
     <module>MJAVADOC-280-4-modA</module>
     <module>MJAVADOC-280-4-modB</module>
diff --git a/src/test/resources/unit/pom-test/src/test/java/maven/AppTest.java 
b/src/test/resources/unit/pom-test/src/test/java/maven/AppTest.java
index 6c6e4bea..005f38e8 100644
--- a/src/test/resources/unit/pom-test/src/test/java/maven/AppTest.java
+++ b/src/test/resources/unit/pom-test/src/test/java/maven/AppTest.java
@@ -19,39 +19,6 @@ package maven;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }
diff --git 
a/src/test/resources/unit/test-javadoc-test/src/test/java/maven/AppTest.java 
b/src/test/resources/unit/test-javadoc-test/src/test/java/maven/AppTest.java
index 6c6e4bea..005f38e8 100644
--- a/src/test/resources/unit/test-javadoc-test/src/test/java/maven/AppTest.java
+++ b/src/test/resources/unit/test-javadoc-test/src/test/java/maven/AppTest.java
@@ -19,39 +19,6 @@ package maven;
  * under the License.
  */
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
+public class AppTest
 {
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
 }


Reply via email to