chore: remove junit 3 references (#1279)

Signed-off-by: Sandra Parsick <sandra@parsick.dev>
diff --git a/src/it/projects/MJAVADOC-180/module1/pom.xml b/src/it/projects/MJAVADOC-180/module1/pom.xml
index d6d91fd..31da78b 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 cabf74b..418d37f 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 @@
  * under the License.

  */

 

-import junit.framework.TestCase;

 import org.dbunit.database.IDatabaseConnection;

 

 /**

@@ -30,7 +29,6 @@
  * 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 @@
     {

         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 4f76bf2..781812f 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 e6f8674..9cabecc 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 d9ee20b..b2e7456 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 @@
  * 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 d4aab0d..3cdc934 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 d9ee20b..b2e7456 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 @@
  * 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 e85cdc8..f60a9d3 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 d9ee20b..bf5c0c1 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 @@
  * 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 33776f9..ba6d614 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 d9ee20b..b2e7456 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 @@
  * 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 5d52971..e45d04c 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 89b2f82..c2f7542 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 @@
  * 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 f54bad8..f3edc41 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 @@
  * 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 c053830..8b4c2d4 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 e7c57f5..0c302a3 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 @@
  * 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 4e07dda..8079d65 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 04bbcda..622fa49 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 @@
  * under the License.
  */
 
-import junit.framework.TestCase;
 import org.dbunit.database.IDatabaseConnection;
 
 /**
@@ -30,7 +29,6 @@
  * 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 @@
     {
         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 746d916..0dffc27 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 77fbd24..255be62 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 04bbcda..622fa49 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 @@
  * under the License.
  */
 
-import junit.framework.TestCase;
 import org.dbunit.database.IDatabaseConnection;
 
 /**
@@ -30,7 +29,6 @@
  * 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 @@
     {
         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 48802b3..cce4692 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 dd7b192..abf67eb 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 @@
  * 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 6ebe15e..3c652a4 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 @@
  * 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 5215e80..ed83e55 100644
--- a/src/it/projects/dependencySource-1/pom.xml
+++ b/src/it/projects/dependencySource-1/pom.xml
@@ -38,15 +38,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/dependencySource-2/MJAVADOC-280-2-distro/pom.xml b/src/it/projects/dependencySource-2/MJAVADOC-280-2-distro/pom.xml
index c416f3b..6acf0fe 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 @@
       <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 dd7b192..abf67eb 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 @@
  * 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 6ebe15e..3c652a4 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 @@
  * 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 843d88a..0bcf2cb 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 @@
     <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 dd7b192..ac2b19c 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 @@
  * 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 6ebe15e..3c652a4 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 @@
  * 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 b177c51..de9883b 100644
--- a/src/it/projects/dependencySource-3/pom.xml
+++ b/src/it/projects/dependencySource-3/pom.xml
@@ -38,15 +38,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/dependencySource-4/MJAVADOC-280-4-distro/pom.xml b/src/it/projects/dependencySource-4/MJAVADOC-280-4-distro/pom.xml
index 9783c54..e9c40e6 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 @@
       <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 dd7b192..abf67eb 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 @@
  * 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 6ebe15e..e454112 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 @@
  * 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 3c9a89d..6478409 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 @@
     <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 6c6e4be..005f38e 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 @@
  * 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 6c6e4be..005f38e 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 @@
  * 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 );
-    }
 }