Revision: 456
Author:   henryju
Date:     2006-05-17 07:04:46 -0700 (Wed, 17 May 2006)
ViewCVS:  http://svn.sourceforge.net/jwebunit/?rev=456&view=rev

Log Message:
-----------
Add description to each pom module
Make TestSuite extends TestCase to fix 
http://jira.codehaus.org/browse/MSUREFIRE-113
Skip tests for Selenium and Jacobie (still too many problems)

Modified Paths:
--------------
    trunk/jwebunit-commons-tests/pom.xml
    trunk/jwebunit-core/pom.xml
    trunk/jwebunit-htmlunit-plugin/pom.xml
    
trunk/jwebunit-htmlunit-plugin/src/test/java/net/sourceforge/jwebunit/htmlunit/JWebUnitTest.java
    trunk/jwebunit-httpunit-plugin/pom.xml
    
trunk/jwebunit-httpunit-plugin/src/test/java/net/sourceforge/jwebunit/httpunit/JWebUnitTest.java
    trunk/jwebunit-jacobie-plugin/pom.xml
    
trunk/jwebunit-jacobie-plugin/src/test/java/net/sourceforge/jwebunit/jacobie/JWebUnitTest.java
    trunk/jwebunit-selenium-plugin/pom.xml
    
trunk/jwebunit-selenium-plugin/src/test/java/net/sourceforge/jwebunit/selenium/JWebUnitTest.java
Modified: trunk/jwebunit-commons-tests/pom.xml
===================================================================
--- trunk/jwebunit-commons-tests/pom.xml        2006-05-17 10:06:52 UTC (rev 
455)
+++ trunk/jwebunit-commons-tests/pom.xml        2006-05-17 14:04:46 UTC (rev 
456)
@@ -8,7 +8,10 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>jwebunit-commons-tests</artifactId>
-    <name>jWebUnit commons tests</name>
+    <name>Commons Tests</name>
+    <description>
+        All test cases that each plugin should pass.
+    </description>
     <properties>
         <topDirectoryLocation>..</topDirectoryLocation>
     </properties>
@@ -29,29 +32,4 @@
             <version>1.3-SNAPSHOT</version>
         </dependency>
     </dependencies>
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <aggregate>true</aggregate>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>jxr-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <artifactId>
-                    maven-project-info-reports-plugin
-                </artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>changelog-maven-plugin</artifactId>
-            </plugin>
-
-        </plugins>
-    </reporting>
 </project>

Modified: trunk/jwebunit-core/pom.xml
===================================================================
--- trunk/jwebunit-core/pom.xml 2006-05-17 10:06:52 UTC (rev 455)
+++ trunk/jwebunit-core/pom.xml 2006-05-17 14:04:46 UTC (rev 456)
@@ -8,7 +8,8 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>jwebunit-core</artifactId>
-    <name>Core - API</name>
+    <name>Core - API</name>
+    <description>The core API of jWebUnit. Define how tests should be 
written.</description>
     <build>
         <plugins>
             <plugin>
@@ -39,36 +40,6 @@
             <version>2.4</version>
         </dependency>
     </dependencies>
-    <reporting>
-        <plugins>
-            <plugin>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <aggregate>true</aggregate>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>jxr-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <artifactId>maven-surefire-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>surefire-report-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <artifactId>
-                    maven-project-info-reports-plugin
-                </artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>changelog-maven-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </reporting>
     <properties>
         <topDirectoryLocation>..</topDirectoryLocation>
     </properties>

Modified: trunk/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- trunk/jwebunit-htmlunit-plugin/pom.xml      2006-05-17 10:06:52 UTC (rev 
455)
+++ trunk/jwebunit-htmlunit-plugin/pom.xml      2006-05-17 14:04:46 UTC (rev 
456)
@@ -1,98 +1,74 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project>
-       <parent>
-               <artifactId>jwebunit</artifactId>
-               <groupId>net.sourceforge.jwebunit</groupId>
-               <version>1.3-SNAPSHOT</version>
-               <relativePath>../</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-       <artifactId>jwebunit-htmlunit-plugin</artifactId>
-       <name>jWebUnit HtmlUnit plugin</name>
-       <repositories>
-               <repository>
-                       <releases />
-                       <snapshots />
-                       <id>private</id>
-                       <name>Private repository</name>
-                       <url>file:${basedir}/private-repository</url>
-               </repository>
-       </repositories>
-       <properties>
-               <topDirectoryLocation>..</topDirectoryLocation>
-       </properties>
-       <dependencies>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.htmlunit</groupId>
-                       <artifactId>htmlunit</artifactId>
-                       <version>1.9-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-core</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-commons-tests</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>log4j</groupId>
-                       <artifactId>log4j</artifactId>
-                       <version>1.2.13</version>
-               </dependency>
-       </dependencies>
-       <build>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <configuration>
-                                       <includes>
-                                               <include>**/*Test.java</include>
-                                       </includes>
-                                       
<testFailureIgnore>true</testFailureIgnore>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-               <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-javadoc-plugin</artifactId>
-                               <configuration>
-                                       <aggregate>true</aggregate>
-                               </configuration>
-                       </plugin>
-                                               <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>jxr-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               
<artifactId>surefire-report-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>
-                                       maven-project-info-reports-plugin
-                               </artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>changelog-maven-plugin</artifactId>
-                       </plugin>
-
-               </plugins>
-       </reporting>
-
+    <parent>
+        <artifactId>jwebunit</artifactId>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <version>1.3-SNAPSHOT</version>
+        <relativePath>../</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-htmlunit-plugin</artifactId>
+    <name>HtmlUnit Plugin</name>
+    <description>HtmlUnit plugin for jWebUnit.</description>
+    <repositories>
+        <repository>
+            <releases />
+            <snapshots />
+            <id>private</id>
+            <name>Private repository</name>
+            <url>file:${basedir}/private-repository</url>
+        </repository>
+    </repositories>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.htmlunit</groupId>
+            <artifactId>htmlunit</artifactId>
+            <version>1.9-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>1.3-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-commons-tests</artifactId>
+            <version>1.3-SNAPSHOT</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <testFailureIgnore>true</testFailureIgnore>
+                    <!-- <forkMode>pertest</forkMode> -->
+                    <!-- TODO Testcases should all end with Test, not Tests-->
+                    <includes>
+                        <include>**/*Test.java</include>
+                        <include>**/*Tests.java</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*AbstractTest.java</exclude>
+                        <exclude>**/*AbstractTests.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Modified: 
trunk/jwebunit-htmlunit-plugin/src/test/java/net/sourceforge/jwebunit/htmlunit/JWebUnitTest.java
===================================================================
--- 
trunk/jwebunit-htmlunit-plugin/src/test/java/net/sourceforge/jwebunit/htmlunit/JWebUnitTest.java
    2006-05-17 10:06:52 UTC (rev 455)
+++ 
trunk/jwebunit-htmlunit-plugin/src/test/java/net/sourceforge/jwebunit/htmlunit/JWebUnitTest.java
    2006-05-17 14:04:46 UTC (rev 456)
@@ -1,6 +1,7 @@
 package net.sourceforge.jwebunit.htmlunit;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import net.sourceforge.jwebunit.TestingEngineRegistry;
 import net.sourceforge.jwebunit.tests.util.JettySetup;
@@ -11,7 +12,7 @@
  * 
  * @author Wilkes Joiner
  */
-public class JWebUnitTest extends TestSuite {
+public class JWebUnitTest extends TestCase {
 
        /**
         * Runs all the tests for jWebUnit. Add each new TestCase by using the
@@ -45,7 +46,4 @@
         return new JettySetup(suite, 
TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);
     }
 
-       public static void main(String[] args) {
-               junit.textui.TestRunner.run(suite());
-       }
 }
\ No newline at end of file

Modified: trunk/jwebunit-httpunit-plugin/pom.xml
===================================================================
--- trunk/jwebunit-httpunit-plugin/pom.xml      2006-05-17 10:06:52 UTC (rev 
455)
+++ trunk/jwebunit-httpunit-plugin/pom.xml      2006-05-17 14:04:46 UTC (rev 
456)
@@ -1,96 +1,65 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-       <parent>
-               <groupId>net.sourceforge.jwebunit</groupId>
-               <artifactId>jwebunit</artifactId>
-               <version>1.3-SNAPSHOT</version>
-               <relativePath>../</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-       <artifactId>jwebunit-httpunit-plugin</artifactId>
-       <packaging>jar</packaging>
-       <name>jWebUnit HttpUnit plugin</name>
-       <repositories>
-               <repository>
-                       <releases />
-                       <snapshots />
-                       <id>private</id>
-                       <name>Private repository</name>
-                       <url>file:${basedir}/private-repository</url>
-               </repository>
-       </repositories>
-       <properties>
-               <topDirectoryLocation>..</topDirectoryLocation>
-       </properties>
-               <dependencies>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.httpunit</groupId>
-                       <artifactId>httpunit</artifactId>
-                       <version>1.6.1-20060101</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-core</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-commons-tests</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-       <build>
-       <plugins>
-                               <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <configuration>
-                                       <includes>
-                                               <include>**/*Test.java</include>
-                                       </includes>
-                                       
<testFailureIgnore>true</testFailureIgnore>
-                               </configuration>
-                       </plugin>
-       </plugins>
-       </build>
-               <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-javadoc-plugin</artifactId>
-                               <configuration>
-                                       <aggregate>true</aggregate>
-                               </configuration>
-                       </plugin>
-                                               <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>jxr-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               
<artifactId>surefire-report-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>
-                                       maven-project-info-reports-plugin
-                               </artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>changelog-maven-plugin</artifactId>
-                       </plugin>
-
-               </plugins>
-       </reporting>
-
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    <parent>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <artifactId>jwebunit</artifactId>
+        <version>1.3-SNAPSHOT</version>
+        <relativePath>../</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-httpunit-plugin</artifactId>
+    <packaging>jar</packaging>
+    <name>HttpUnit Plugin</name>
+    <description>HttpUnit plugin for jWebUnit.</description>
+    <repositories>
+        <repository>
+            <releases />
+            <snapshots />
+            <id>private</id>
+            <name>Private repository</name>
+            <url>file:${basedir}/private-repository</url>
+        </repository>
+    </repositories>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.httpunit</groupId>
+            <artifactId>httpunit</artifactId>
+            <version>1.6.1-20060101</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>1.3-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-commons-tests</artifactId>
+            <version>1.3-SNAPSHOT</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                    </includes>
+                    <testFailureIgnore>true</testFailureIgnore>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Modified: 
trunk/jwebunit-httpunit-plugin/src/test/java/net/sourceforge/jwebunit/httpunit/JWebUnitTest.java
===================================================================
--- 
trunk/jwebunit-httpunit-plugin/src/test/java/net/sourceforge/jwebunit/httpunit/JWebUnitTest.java
    2006-05-17 10:06:52 UTC (rev 455)
+++ 
trunk/jwebunit-httpunit-plugin/src/test/java/net/sourceforge/jwebunit/httpunit/JWebUnitTest.java
    2006-05-17 14:04:46 UTC (rev 456)
@@ -1,6 +1,7 @@
 package net.sourceforge.jwebunit.httpunit;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import net.sourceforge.jwebunit.TestingEngineRegistry;
 import net.sourceforge.jwebunit.tests.util.JettySetup;
@@ -11,7 +12,7 @@
  * 
  * @author Wilkes Joiner
  */
-public class JWebUnitTest extends TestSuite {
+public class JWebUnitTest extends TestCase {
 
        /**
         * Runs all the tests for jWebUnit. Add each new TestCase by using the
@@ -45,7 +46,4 @@
         return new JettySetup(suite, 
TestingEngineRegistry.TESTING_ENGINE_HTTPUNIT);
     }
 
-       public static void main(String[] args) {
-               junit.textui.TestRunner.run(suite());
-       }
 }
\ No newline at end of file

Modified: trunk/jwebunit-jacobie-plugin/pom.xml
===================================================================
--- trunk/jwebunit-jacobie-plugin/pom.xml       2006-05-17 10:06:52 UTC (rev 
455)
+++ trunk/jwebunit-jacobie-plugin/pom.xml       2006-05-17 14:04:46 UTC (rev 
456)
@@ -1,96 +1,66 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-       <parent>
-               <groupId>net.sourceforge.jwebunit</groupId>
-               <artifactId>jwebunit</artifactId>
-               <version>1.3-SNAPSHOT</version>
-               <relativePath>../</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-       <artifactId>jwebunit-jacobie-plugin</artifactId>
-       <packaging>jar</packaging>
-       <name>jWebUnit Jacobie plugin</name>
-       <repositories>
-               <repository>
-                       <releases />
-                       <snapshots />
-                       <id>private</id>
-                       <name>Private repository</name>
-                       <url>file:${basedir}/private-repository</url>
-               </repository>
-       </repositories>
-       <properties>
-               <topDirectoryLocation>..</topDirectoryLocation>
-       </properties>
-       <dependencies>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jacobie</groupId>
-                       <artifactId>jacobie</artifactId>
-                       <version>1.3</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-core</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>net.sourceforge.jwebunit</groupId>
-                       <artifactId>jwebunit-commons-tests</artifactId>
-                       <version>1.3-SNAPSHOT</version>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-       <build>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <configuration>
-                                       <includes>
-                                               <include>**/*Test.java</include>
-                                       </includes>
-                                       
<testFailureIgnore>true</testFailureIgnore>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-               <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-javadoc-plugin</artifactId>
-                               <configuration>
-                                       <aggregate>true</aggregate>
-                               </configuration>
-                       </plugin>
-                                               <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>jxr-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               
<artifactId>surefire-report-maven-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <artifactId>
-                                       maven-project-info-reports-plugin
-                               </artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>changelog-maven-plugin</artifactId>
-                       </plugin>
-
-               </plugins>
-       </reporting>
-
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    <parent>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <artifactId>jwebunit</artifactId>
+        <version>1.3-SNAPSHOT</version>
+        <relativePath>../</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-jacobie-plugin</artifactId>
+    <packaging>jar</packaging>
+    <name>Jacobie plugin</name>
+    <description>Jacobie plugin for jWebUnit.</description>
+    <repositories>
+        <repository>
+            <releases />
+            <snapshots />
+            <id>private</id>
+            <name>Private repository</name>
+            <url>file:${basedir}/private-repository</url>
+        </repository>
+    </repositories>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jacobie</groupId>
+            <artifactId>jacobie</artifactId>
+            <version>1.3</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>1.3-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-commons-tests</artifactId>
+            <version>1.3-SNAPSHOT</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                    </includes>
+                    <testFailureIgnore>true</testFailureIgnore>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Modified: 
trunk/jwebunit-jacobie-plugin/src/test/java/net/sourceforge/jwebunit/jacobie/JWebUnitTest.java
===================================================================
--- 
trunk/jwebunit-jacobie-plugin/src/test/java/net/sourceforge/jwebunit/jacobie/JWebUnitTest.java
      2006-05-17 10:06:52 UTC (rev 455)
+++ 
trunk/jwebunit-jacobie-plugin/src/test/java/net/sourceforge/jwebunit/jacobie/JWebUnitTest.java
      2006-05-17 14:04:46 UTC (rev 456)
@@ -1,6 +1,7 @@
 package net.sourceforge.jwebunit.jacobie;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import net.sourceforge.jwebunit.TestingEngineRegistry;
 import net.sourceforge.jwebunit.tests.util.JettySetup;
@@ -11,7 +12,7 @@
  * 
  * @author Wilkes Joiner
  */
-public class JWebUnitTest extends TestSuite {
+public class JWebUnitTest extends TestCase {
 
        /**
         * Runs all the tests for jWebUnit. Add each new TestCase by using the
@@ -42,10 +43,7 @@
         suite.addTestSuite(FormAssertionsTest.class);
         suite.addTestSuite(NavigationTest.class);
         //$JUnit-END$
-        return new JettySetup(suite, 
TestingEngineRegistry.TESTING_ENGINE_HTTPUNIT);
+        return new JettySetup(suite, 
TestingEngineRegistry.TESTING_ENGINE_JACOBIE);
     }
 
-       public static void main(String[] args) {
-               junit.textui.TestRunner.run(suite());
-       }
 }
\ No newline at end of file

Modified: trunk/jwebunit-selenium-plugin/pom.xml
===================================================================
--- trunk/jwebunit-selenium-plugin/pom.xml      2006-05-17 10:06:52 UTC (rev 
455)
+++ trunk/jwebunit-selenium-plugin/pom.xml      2006-05-17 14:04:46 UTC (rev 
456)
@@ -8,7 +8,8 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>jwebunit-selenium-plugin</artifactId>
-    <name>jWebUnit Selenium plugin</name>
+    <name>Selenium plugin</name>
+    <description>Selenium plugin for jWebUnit.</description>
     <repositories>
         <repository>
             <releases />
@@ -52,47 +53,16 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <includes>
                         <include>**/*Test.java</include>
                     </includes>
-                    <testFailureIgnore>true</testFailureIgnore>
+                    <testFailureIgnore>true</testFailureIgnore>
+                    <skip>true</skip>
                 </configuration>
             </plugin>
         </plugins>
     </build>
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <aggregate>true</aggregate>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>jxr-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <artifactId>maven-surefire-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>surefire-report-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <artifactId>
-                    maven-project-info-reports-plugin
-                </artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>changelog-maven-plugin</artifactId>
-            </plugin>
-
-        </plugins>
-    </reporting>
-
 </project>

Modified: 
trunk/jwebunit-selenium-plugin/src/test/java/net/sourceforge/jwebunit/selenium/JWebUnitTest.java
===================================================================
--- 
trunk/jwebunit-selenium-plugin/src/test/java/net/sourceforge/jwebunit/selenium/JWebUnitTest.java
    2006-05-17 10:06:52 UTC (rev 455)
+++ 
trunk/jwebunit-selenium-plugin/src/test/java/net/sourceforge/jwebunit/selenium/JWebUnitTest.java
    2006-05-17 14:04:46 UTC (rev 456)
@@ -1,6 +1,7 @@
 package net.sourceforge.jwebunit.selenium;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import net.sourceforge.jwebunit.TestingEngineRegistry;
 import net.sourceforge.jwebunit.tests.util.JettySetup;
@@ -11,7 +12,7 @@
  * 
  * @author Wilkes Joiner
  */
-public class JWebUnitTest extends TestSuite {
+public class JWebUnitTest extends TestCase {
 
        /**
         * Runs all the tests for jWebUnit. Add each new TestCase by using the
@@ -44,8 +45,4 @@
         //$JUnit-END$
         return new JettySetup(suite, 
TestingEngineRegistry.TESTING_ENGINE_SELENIUM);
     }
-
-       public static void main(String[] args) {
-               junit.textui.TestRunner.run(suite());
-       }
 }
\ No newline at end of file


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to