Revision: 823
          http://jwebunit.svn.sourceforge.net/jwebunit/?rev=823&view=rev
Author:   henryju
Date:     2010-03-03 20:41:24 +0000 (Wed, 03 Mar 2010)

Log Message:
-----------
[maven-release-plugin] prepare release jwebunit-2.3

Modified Paths:
--------------
    trunk/jwebunit-commons-tests/pom.xml
    trunk/jwebunit-core/pom.xml
    trunk/jwebunit-htmlunit-plugin/pom.xml
    trunk/jwebunit-selenium-plugin/pom.xml
    trunk/jwebunit-webtestcase-generator/pom.xml
    trunk/pom.xml

Modified: trunk/jwebunit-commons-tests/pom.xml
===================================================================
--- trunk/jwebunit-commons-tests/pom.xml        2010-03-03 20:27:36 UTC (rev 
822)
+++ trunk/jwebunit-commons-tests/pom.xml        2010-03-03 20:41:24 UTC (rev 
823)
@@ -1,42 +1,42 @@
-<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>
-        <artifactId>jwebunit</artifactId>
-        <groupId>net.sourceforge.jwebunit</groupId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>jwebunit-commons-tests</artifactId>
-    <name>Commons Tests</name>
-    <description>All test cases that each plugin should pass.</description>
-    <dependencies>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>junitperf</groupId>
-            <artifactId>junitperf</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.mortbay.jetty</groupId>
-            <artifactId>jetty</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.jwebunit</groupId>
-            <artifactId>jwebunit-core</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>commons-fileupload</groupId>
-            <artifactId>commons-fileupload</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-        </dependency>
-    </dependencies>
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-    </properties>
-</project>
+<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>
+        <artifactId>jwebunit</artifactId>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <version>2.3</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-commons-tests</artifactId>
+    <name>Commons Tests</name>
+    <description>All test cases that each plugin should pass.</description>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junitperf</groupId>
+            <artifactId>junitperf</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>jetty</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
+    </dependencies>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+</project>

Modified: trunk/jwebunit-core/pom.xml
===================================================================
--- trunk/jwebunit-core/pom.xml 2010-03-03 20:27:36 UTC (rev 822)
+++ trunk/jwebunit-core/pom.xml 2010-03-03 20:41:24 UTC (rev 823)
@@ -1,84 +1,84 @@
-<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>
-               <artifactId>jwebunit</artifactId>
-               <groupId>net.sourceforge.jwebunit</groupId>
-               <version>3.0-SNAPSHOT</version>
-               <relativePath>../pom.xml</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-       <artifactId>jwebunit-core</artifactId>
-       <name>Core - API</name>
-       <description>
-               The core API of JWebUnit. Define how tests should be written 
and interface for testing engines.
-       </description>
-       <dependencies>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>org.mockito</groupId>
-                       <artifactId>mockito-all</artifactId>
-                       <version>1.7</version>
-            <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>regexp</groupId>
-                       <artifactId>regexp</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>javax.servlet</groupId>
-                       <artifactId>servlet-api</artifactId>
-               </dependency>
-       </dependencies>
-       <properties>
-               <topDirectoryLocation>..</topDirectoryLocation>
-       </properties>   
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>exec-maven-plugin</artifactId>
-                               <executions>
-                                       <execution>
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>java</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <sourceRoot>
-                                                               
${project.build.directory}/generated-sources/main/java
-                                                       </sourceRoot>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                               <configuration>
-                                       <mainClass>
-                                               
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
-                                       </mainClass>
-                                       <arguments>
-                                               
<argument>${basedir}/src/main/java</argument>
-                                               <argument>
-                                                       
${project.build.directory}/generated-sources/main/java
-                                               </argument>
-                                       </arguments>
-                                       <includePluginDependencies>
-                                               true
-                                       </includePluginDependencies>
-                                       <includeProjectDependencies>
-                                               false
-                                       </includeProjectDependencies>
-                               </configuration>
-                               <dependencies>
-                                       <dependency>
-                                               
<groupId>net.sourceforge.jwebunit</groupId>
-                                               <artifactId>
-                                                       
jwebunit-webtestcase-generator
-                                               </artifactId>
-                                               
<version>${project.version}</version>
-                                       </dependency>
-                               </dependencies>
-                       </plugin>
-               </plugins>
-       </build>
-</project>
+<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>
+               <artifactId>jwebunit</artifactId>
+               <groupId>net.sourceforge.jwebunit</groupId>
+               <version>2.3</version>
+               <relativePath>../pom.xml</relativePath>
+       </parent>
+       <modelVersion>4.0.0</modelVersion>
+       <artifactId>jwebunit-core</artifactId>
+       <name>Core - API</name>
+       <description>
+               The core API of JWebUnit. Define how tests should be written 
and interface for testing engines.
+       </description>
+       <dependencies>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-all</artifactId>
+                       <version>1.7</version>
+            <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>regexp</groupId>
+                       <artifactId>regexp</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+               </dependency>
+       </dependencies>
+       <properties>
+               <topDirectoryLocation>..</topDirectoryLocation>
+       </properties>   
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>exec-maven-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <phase>generate-sources</phase>
+                                               <goals>
+                                                       <goal>java</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <sourceRoot>
+                                                               
${project.build.directory}/generated-sources/main/java
+                                                       </sourceRoot>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                               <configuration>
+                                       <mainClass>
+                                               
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
+                                       </mainClass>
+                                       <arguments>
+                                               
<argument>${basedir}/src/main/java</argument>
+                                               <argument>
+                                                       
${project.build.directory}/generated-sources/main/java
+                                               </argument>
+                                       </arguments>
+                                       <includePluginDependencies>
+                                               true
+                                       </includePluginDependencies>
+                                       <includeProjectDependencies>
+                                               false
+                                       </includeProjectDependencies>
+                               </configuration>
+                               <dependencies>
+                                       <dependency>
+                                               
<groupId>net.sourceforge.jwebunit</groupId>
+                                               <artifactId>
+                                                       
jwebunit-webtestcase-generator
+                                               </artifactId>
+                                               
<version>${project.version}</version>
+                                       </dependency>
+                               </dependencies>
+                       </plugin>
+               </plugins>
+       </build>
+</project>

Modified: trunk/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- trunk/jwebunit-htmlunit-plugin/pom.xml      2010-03-03 20:27:36 UTC (rev 
822)
+++ trunk/jwebunit-htmlunit-plugin/pom.xml      2010-03-03 20:41:24 UTC (rev 
823)
@@ -1,72 +1,72 @@
-<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>
-        <artifactId>jwebunit</artifactId>
-        <groupId>net.sourceforge.jwebunit</groupId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>jwebunit-htmlunit-plugin</artifactId>
-    <name>HtmlUnit Plugin</name>
-    <description>HtmlUnit plugin for JWebUnit.</description>
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <includes>
-                        <include>**/*Test.java</include>
-                        <include>**/*Tests.java</include>
-                    </includes>
-                    <excludes>
-                        <exclude>**/*AbstractTest.java</exclude>
-                        <exclude>**/*AbstractTests.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    <dependencies>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.mockito</groupId>
-            <artifactId>mockito-all</artifactId>
-            <version>1.7</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.htmlunit</groupId>
-            <artifactId>htmlunit</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.jwebunit</groupId>
-            <artifactId>jwebunit-core</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.jwebunit</groupId>
-            <artifactId>jwebunit-commons-tests</artifactId>
-            <version>${project.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-        </dependency>
-    </dependencies>
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-    </properties>
-</project>
+<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>
+        <artifactId>jwebunit</artifactId>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <version>2.3</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-htmlunit-plugin</artifactId>
+    <name>HtmlUnit Plugin</name>
+    <description>HtmlUnit plugin for JWebUnit.</description>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                        <include>**/*Tests.java</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*AbstractTest.java</exclude>
+                        <exclude>**/*AbstractTests.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.7</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.htmlunit</groupId>
+            <artifactId>htmlunit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-commons-tests</artifactId>
+            <version>${project.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+    </dependencies>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+</project>

Modified: trunk/jwebunit-selenium-plugin/pom.xml
===================================================================
--- trunk/jwebunit-selenium-plugin/pom.xml      2010-03-03 20:27:36 UTC (rev 
822)
+++ trunk/jwebunit-selenium-plugin/pom.xml      2010-03-03 20:41:24 UTC (rev 
823)
@@ -1,93 +1,93 @@
-<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/xsd/maven-4.0.0.xsd";>
-    <parent>
-        <artifactId>jwebunit</artifactId>
-        <groupId>net.sourceforge.jwebunit</groupId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>jwebunit-selenium-plugin</artifactId>
-    <name>Selenium Plugin</name>
-    <description>Selenium plugin for JWebUnit.</description>
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <testFailureIgnore>true</testFailureIgnore>
-                    <skip>true</skip>
-                    <includes>
-                        <include>**/*Test.java</include>
-                        <include>**/*Tests.java</include>
-                    </includes>
-                    <excludes>
-                        <exclude>**/*AbstractTest.java</exclude>
-                        <exclude>**/*AbstractTests.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-            <!-- Requires java 1.5 -->
-            <!--plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>selenium-maven-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>start</id>
-                        <phase>process-test-classes</phase>
-                        <goals>
-                            <goal>start-server</goal>
-                        </goals>
-                        <configuration>
-                            <background>true</background>
-                            <multiWindow>true</multiWindow>
-                        </configuration>
-                    </execution>
-                </executions>
-                <dependencies>
-                    <dependency>
-                        <groupId>org.openqa.selenium.server</groupId>
-                        <artifactId>selenium-server</artifactId>
-                        <version>1.0-beta-1</version>
-                    </dependency>
-                </dependencies>
-            </plugin-->
-        </plugins>
-    </build>
-    <dependencies>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.seleniumhq.selenium.client-drivers</groupId>
-            <artifactId>selenium-java-client-driver</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.jwebunit</groupId>
-            <artifactId>jwebunit-core</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.jwebunit</groupId>
-            <artifactId>jwebunit-commons-tests</artifactId>
-            <version>${project.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-        </dependency>
-    </dependencies>
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-    </properties>
-</project>
+<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/xsd/maven-4.0.0.xsd";>
+    <parent>
+        <artifactId>jwebunit</artifactId>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <version>2.3</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-selenium-plugin</artifactId>
+    <name>Selenium Plugin</name>
+    <description>Selenium plugin for JWebUnit.</description>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <testFailureIgnore>true</testFailureIgnore>
+                    <skip>true</skip>
+                    <includes>
+                        <include>**/*Test.java</include>
+                        <include>**/*Tests.java</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*AbstractTest.java</exclude>
+                        <exclude>**/*AbstractTests.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <!-- Requires java 1.5 -->
+            <!--plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>selenium-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>start</id>
+                        <phase>process-test-classes</phase>
+                        <goals>
+                            <goal>start-server</goal>
+                        </goals>
+                        <configuration>
+                            <background>true</background>
+                            <multiWindow>true</multiWindow>
+                        </configuration>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.openqa.selenium.server</groupId>
+                        <artifactId>selenium-server</artifactId>
+                        <version>1.0-beta-1</version>
+                    </dependency>
+                </dependencies>
+            </plugin-->
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+            <artifactId>selenium-java-client-driver</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jwebunit</groupId>
+            <artifactId>jwebunit-commons-tests</artifactId>
+            <version>${project.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+    </dependencies>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+</project>

Modified: trunk/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- trunk/jwebunit-webtestcase-generator/pom.xml        2010-03-03 20:27:36 UTC 
(rev 822)
+++ trunk/jwebunit-webtestcase-generator/pom.xml        2010-03-03 20:41:24 UTC 
(rev 823)
@@ -1,33 +1,33 @@
-<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>
-        <artifactId>jwebunit</artifactId>
-        <groupId>net.sourceforge.jwebunit</groupId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>jwebunit-webtestcase-generator</artifactId>
-    <name>WebTestCase Generator</name>
-    <description>A little parser that create WebTestCase from 
WebTester.</description>
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-    </properties>
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>javacc-maven-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>javacc</goal>
-                        </goals>
-                        <configuration>
-                            
<outputDirectory>target/generated-sources/javacc</outputDirectory>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>
+<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>
+        <artifactId>jwebunit</artifactId>
+        <groupId>net.sourceforge.jwebunit</groupId>
+        <version>2.3</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>jwebunit-webtestcase-generator</artifactId>
+    <name>WebTestCase Generator</name>
+    <description>A little parser that create WebTestCase from 
WebTester.</description>
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+    </properties>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>javacc-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>javacc</goal>
+                        </goals>
+                        <configuration>
+                            
<outputDirectory>target/generated-sources/javacc</outputDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml       2010-03-03 20:27:36 UTC (rev 822)
+++ trunk/pom.xml       2010-03-03 20:41:24 UTC (rev 823)
@@ -1,508 +1,508 @@
-<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";>
-       <modelVersion>4.0.0</modelVersion>
-       <groupId>net.sourceforge.jwebunit</groupId>
-       <artifactId>jwebunit</artifactId>
-       <name>JWebUnit</name>
-       <version>3.0-SNAPSHOT</version>
-       <packaging>pom</packaging>
-       <description>
-               JWebUnit is a Java framework that facilitates creation of
-               acceptance tests for web applications. It evolved from a project
-               where we were using HttpUnit and JUnit to create acceptance
-               tests. As the tests were being written, they were continuously
-               refactored to remove duplication and other bad smells in the
-               test code. JWebUnit is the result of these refactorings.
-       </description>
-       <url>http://jwebunit.sourceforge.net</url>
-       <issueManagement>
-               <system>sourceforge</system>
-               <url>http://sourceforge.net/tracker/?group_id=61302</url>
-       </issueManagement>
-       <inceptionYear>2002</inceptionYear>
-       <modules>
-               <module>jwebunit-webtestcase-generator</module>
-               <module>jwebunit-core</module>
-               <module>jwebunit-commons-tests</module>
-               <module>jwebunit-htmlunit-plugin</module>
-               <module>jwebunit-selenium-plugin</module>
-       </modules>
-       <mailingLists>
-               <mailingList>
-                       <name>JWebUnit Development Mailing list</name>
-                       <subscribe>
-                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-development
-                       </subscribe>
-                       <unsubscribe>
-                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-development
-                       </unsubscribe>
-                       <archive>
-                               
http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-development
-                       </archive>
-                       <post>[email protected]</post>
-               </mailingList>
-               <mailingList>
-                       <name>JWebUnit User Mailing list</name>
-                       <subscribe>
-                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-users
-                       </subscribe>
-                       <unsubscribe>
-                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-users
-                       </unsubscribe>
-                       <archive>
-                               
http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-users
-                       </archive>
-                       <post>[email protected]</post>
-               </mailingList>
-       </mailingLists>
-       <developers>
-               <developer>
-                       <id>henryju</id>
-                       <name>Julien Henry</name>
-                       <email>henryju at users.sourceforge.net</email>
-                       <url />
-                       <organization>Capgemini</organization>
-                       
<organizationUrl>http://www.capgemini.com</organizationUrl>
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-                       <timezone>+2</timezone>
-               </developer>
-               <developer>
-                       <id>joshlane</id>
-                       <name>Josh Lane</name>
-                       <email>joshlane at users.sourceforge.net</email>
-                       <url />
-                       <organization>Brontes Technologies</organization>
-                       <organizationUrl>
-                               
http://solutions.3m.com/wps/portal/3M/en_US/LavaCOS/3MESPE-LavaCOS/
-                       </organizationUrl>
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-                       <timezone>-5</timezone>
-               </developer>
-               <developer>
-                       <id>jevonwright</id>
-                       <name>Jevon Wright</name>
-                       <email>jevonwright at users.sourceforge.net</email>
-                       <url>http://www.jevon.org</url>
-                       <organization />
-                       <organizationUrl />
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-                       <timezone>+13</timezone>
-               </developer>
-       </developers>
-       <contributors>
-               <contributor>
-                       <name>Jim Weaver</name>
-                       <email>jimweaver at users.sourceforge.net</email>
-                       <organization>Thoughtworks</organization>
-                       <roles>
-                               <role>All-Hands person</role>
-                       </roles>
-                       <timezone>-5</timezone>
-               </contributor>
-               <contributor>
-                       <name>Wilkes Joiner</name>
-                       <email>wilkesj at users.sourceforge.net</email>
-                       <organization />
-                       <roles>
-                               <role>All-Hands person</role>
-                       </roles>
-               </contributor>
-               <contributor>
-                       <name>Vivek Venugopalan</name>
-                       <email>vivek at magic hypen cauldron dot com</email>
-                       <url>http://www.magic-cauldron.com</url>
-                       <organization />
-                       <roles>
-                               <role>All-Hands person</role>
-                       </roles>
-                       <timezone>+5.5</timezone>
-               </contributor>
-               <contributor>
-                       <name>Martijn Dashorst</name>
-                       <email>dashorst at users.sourceforge.net</email>
-                       <url>http://www.dashorst.dds.nl</url>
-                       <organization>Topicus B.V.</organization>
-                       <roles>
-                               <role>All-Hands person</role>
-                       </roles>
-                       <timezone>+1</timezone>
-               </contributor>
-               <contributor>
-                       <name>Nicholas Neuberger</name>
-                       <email>nneuberger at users.sourceforge.net</email>
-                       <url />
-                       <organization>Sunshine Solar</organization>
-                       <roles>
-                               <role>Developer</role>
-                       </roles>
-                       <timezone>-6</timezone>
-               </contributor>
-               <contributor>
-                       <name>Jon Frisby</name>
-                       <email>[email protected]</email>
-                       <url />
-                       <organization />
-                       <organizationUrl />
-                       <roles />
-                       <timezone />
-                       <properties />
-               </contributor>
-               <contributor>
-                       <name>Fred Burlet</name>
-                       <email>[email protected]</email>
-                       <url />
-                       <organization />
-                       <organizationUrl />
-                       <roles />
-                       <timezone />
-                       <properties />
-               </contributor>
-               <contributor>
-                       <name>Mike C</name>
-                       <email>mtc3bmtc3b at users.sourceforge.net</email>
-                       <url />
-                       <organization />
-                       <organizationUrl />
-                       <roles />
-                       <timezone />
-                       <properties />
-               </contributor>
-       </contributors>
-       <licenses>
-               <license>
-                       <name>GPL License</name>
-                       <url>${topDirectoryLocation}/LICENSE.txt</url>
-               </license>
-       </licenses>
-       <scm>
-               
<connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
-               
<developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
-               
<url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
-       </scm>
-       <organization>
-               <name>SourceForge</name>
-               <url>http://sourceforge.net</url>
-       </organization>
-       <repositories>
-               <repository>
-                       <id>selenium</id>
-                       <name>Selenium release repository</name>
-                       
<url>http://nexus.openqa.org/content/repositories/releases</url>
-               </repository>
-       </repositories>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-assembly-plugin</artifactId>
-                               <version>2.2-beta-2</version>
-                               <configuration>
-                                       <attach>false</attach>
-                                       <descriptors>
-                                               <descriptor>
-                                                       src/assemble/release.xml
-                                               </descriptor>
-                                       </descriptors>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-release-plugin</artifactId>
-                               <version>2.0</version>
-                               <configuration>
-                                       
<autoVersionSubmodules>true</autoVersionSubmodules>
-                                       <preparationGoals>clean 
install</preparationGoals>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-compiler-plugin</artifactId>
-                               <version>2.1</version>
-                               <configuration>
-                                       <source>1.5</source>
-                                       <target>1.5</target>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-toolchains-plugin</artifactId>
-                               <version>1.0</version>
-                               <executions>
-                                       <execution>
-                                               <phase>validate</phase>
-                                               <goals>
-                                                       <goal>toolchain</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                               <configuration>
-                                       <toolchains>
-                                               <jdk>
-                                                       <version>1.5</version>
-                                                       <vendor>sun</vendor>
-                                               </jdk>
-                                       </toolchains>
-                               </configuration>
-                       </plugin>
-               </plugins>
-               <pluginManagement>
-                       <plugins>
-                               <plugin>
-                                       <inherited>true</inherited>
-                                       <groupId>org.codehaus.mojo</groupId>
-                                       
<artifactId>javacc-maven-plugin</artifactId>
-                                       <version>2.4</version>
-                               </plugin>
-                               <plugin>
-                                       <inherited>true</inherited>
-                                       <groupId>org.codehaus.mojo</groupId>
-                                       
<artifactId>exec-maven-plugin</artifactId>
-                                       <version>1.1-beta-1</version>
-                               </plugin>
-                               <plugin>
-                                       <inherited>true</inherited>
-                                       
<groupId>org.apache.maven.plugins</groupId>
-                                       
<artifactId>maven-site-plugin</artifactId>
-                                       <version>2.1</version>
-                               </plugin>
-                       </plugins>
-               </pluginManagement>
-       </build>
-       <properties>
-               <topDirectoryLocation>.</topDirectoryLocation>
-               
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-       </properties>
-       <dependencyManagement>
-               <dependencies>
-                       <dependency>
-                               <groupId>junit</groupId>
-                               <artifactId>junit</artifactId>
-                               <version>4.7</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>junitperf</groupId>
-                               <artifactId>junitperf</artifactId>
-                               <version>1.8</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>org.mortbay.jetty</groupId>
-                               <artifactId>jetty</artifactId>
-                               <version>6.1.12</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>commons-fileupload</groupId>
-                               <artifactId>commons-fileupload</artifactId>
-                               <version>1.2</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>commons-io</groupId>
-                               <artifactId>commons-io</artifactId>
-                               <version>1.4</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>net.sourceforge.htmlunit</groupId>
-                               <artifactId>htmlunit</artifactId>
-                               <version>2.7</version>
-                       </dependency>
-                       <dependency>
-                               
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
-                               
<artifactId>selenium-java-client-driver</artifactId>
-                               <version>1.0.1</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>regexp</groupId>
-                               <artifactId>regexp</artifactId>
-                               <version>1.3</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>javax.servlet</groupId>
-                               <artifactId>servlet-api</artifactId>
-                               <version>2.4</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>org.slf4j</groupId>
-                               <artifactId>slf4j-api</artifactId>
-                               <version>1.5.0</version>
-                       </dependency>
-                       <dependency>
-                               <groupId>org.slf4j</groupId>
-                               <artifactId>slf4j-log4j12</artifactId>
-                               <version>1.5.0</version>
-                               <optional>true</optional>
-                       </dependency>
-               </dependencies>
-       </dependencyManagement>
-       <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>2.4</version>
-                               <configuration>
-                                       <configLocation>
-                                               
${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
-                                       </configLocation>
-                                       <headerLocation>
-                                               
${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
-                                       </headerLocation>
-                                       <xrefLocation>xref</xrefLocation>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               
<artifactId>maven-surefire-report-plugin</artifactId>
-                               <version>2.4.3</version>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>jdepend-maven-plugin</artifactId>
-                               <version>2.0-beta-2</version>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>taglist-maven-plugin</artifactId>
-                               <version>2.4</version>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-changes-plugin</artifactId>
-                               <version>2.2</version>
-                               <inherited>false</inherited>
-                               <reportSets>
-                                       <reportSet>
-                                               <reports>
-                                                       
<report>changes-report</report>
-                                               </reports>
-                                       </reportSet>
-                               </reportSets>
-                               <configuration>
-                                       <issueLinkTemplate>
-                                               
http://sourceforge.net/support/tracker.php?aid=%ISSUE%
-                                       </issueLinkTemplate>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>findbugs-maven-plugin</artifactId>
-                               <version>2.3</version>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-javadoc-plugin</artifactId>
-                               <version>2.5</version>
-                               <reportSets>
-                                       <reportSet>
-                                               <id>aggregate</id>
-                                               <configuration>
-                                                       <excludePackageNames>
-                                                               
net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
-                                                       </excludePackageNames>
-                                                               <links>
-                                                                       <link>
-                                                                               
http://java.sun.com/j2se/1.5.0/docs/api/
-                                                                       </link>
-                                                                       <link>
-                                                                               
http://hc.apache.org/httpclient-3.x/apidocs/
-                                                                       </link>
-                                                                       
<link>http://junit.sourceforge.net/junit3.8.1/javadoc/</link>
-                                                                       <link>
-                                                                               
http://htmlunit.sourceforge.net/apidocs/
-                                                                       </link>
-                                                                       
<link>http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/</link>
-                                                               </links>
-                                                               <groups>
-                                                                       <group>
-                                                                               
<title>Core Packages</title>
-                                                                               
<packages>
-                                                                               
        
net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
-                                                                               
</packages>
-                                                                       </group>
-                                                                       <group>
-                                                                               
<title>HtmlUnit Packages</title>
-                                                                               
<packages>
-                                                                               
        net.sourceforge.jwebunit.htmlunit*
-                                                                               
</packages>
-                                                                       </group>
-                                                                       <group>
-                                                                               
<title>Selenium Packages</title>
-                                                                               
<packages>
-                                                                               
        net.sourceforge.jwebunit.selenium*
-                                                                               
</packages>
-                                                                       </group>
-                                                               </groups>
-                                               </configuration>
-                                               <reports>
-                                                       
<report>aggregate</report>
-                                               </reports>
-                                       </reportSet>
-                               </reportSets>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jxr-plugin</artifactId>
-                               <version>2.1</version>
-                               <configuration>
-                                       <aggregate>true</aggregate>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-pmd-plugin</artifactId>
-                               <version>2.4</version>
-                               <configuration>
-                                       <xrefLocation>
-                                               
${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
-                                       </xrefLocation>
-                                       <targetJdk>1.5</targetJdk>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               
<artifactId>maven-project-info-reports-plugin</artifactId>
-                               <version>2.1.2</version>
-                               <reportSets>
-                                       <reportSet>
-                                               <reports>
-                                                       <report>index</report>
-                                                       
<report>dependencies</report>
-                                                       
<report>project-team</report>
-                                                       
<report>mailing-list</report>
-                                                       <report>license</report>
-                                                       
<report>issue-tracking</report>
-                                                       <report>scm</report>
-                                                       <report>summary</report>
-                                               </reports>
-                                       </reportSet>
-                               </reportSets>
-                       </plugin>
-               </plugins>
-       </reporting>
-       <distributionManagement>
-               <site>
-                       <id>jwebunit-website</id>
-                       <name>JWebUnit WebSite - Sourceforge</name>
-                       <url>
-                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs
-                       </url>
-               </site>
-               <repository>
-                       <id>jwebunit-m2-repo</id>
-                       <url>
-                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
-                       </url>
-                       <name>JWebUnit Maven 2 Repository</name>
-               </repository>
-               <snapshotRepository>
-                       <id>jwebunit-m2-repo-snapshots</id>
-                       <url>
-                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
-                       </url>
-                       <name>JWebUnit Maven 2 Snapshots Repository</name>
-               </snapshotRepository>
-       </distributionManagement>
-</project>
+<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";>
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>net.sourceforge.jwebunit</groupId>
+       <artifactId>jwebunit</artifactId>
+       <name>JWebUnit</name>
+       <version>2.3</version>
+       <packaging>pom</packaging>
+       <description>
+               JWebUnit is a Java framework that facilitates creation of
+               acceptance tests for web applications. It evolved from a project
+               where we were using HttpUnit and JUnit to create acceptance
+               tests. As the tests were being written, they were continuously
+               refactored to remove duplication and other bad smells in the
+               test code. JWebUnit is the result of these refactorings.
+       </description>
+       <url>http://jwebunit.sourceforge.net</url>
+       <issueManagement>
+               <system>sourceforge</system>
+               <url>http://sourceforge.net/tracker/?group_id=61302</url>
+       </issueManagement>
+       <inceptionYear>2002</inceptionYear>
+       <modules>
+               <module>jwebunit-webtestcase-generator</module>
+               <module>jwebunit-core</module>
+               <module>jwebunit-commons-tests</module>
+               <module>jwebunit-htmlunit-plugin</module>
+               <module>jwebunit-selenium-plugin</module>
+       </modules>
+       <mailingLists>
+               <mailingList>
+                       <name>JWebUnit Development Mailing list</name>
+                       <subscribe>
+                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-development
+                       </subscribe>
+                       <unsubscribe>
+                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-development
+                       </unsubscribe>
+                       <archive>
+                               
http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-development
+                       </archive>
+                       <post>[email protected]</post>
+               </mailingList>
+               <mailingList>
+                       <name>JWebUnit User Mailing list</name>
+                       <subscribe>
+                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-users
+                       </subscribe>
+                       <unsubscribe>
+                               
http://lists.sourceforge.net/lists/listinfo/jwebunit-users
+                       </unsubscribe>
+                       <archive>
+                               
http://sourceforge.net/mailarchive/forum.php?forum_name=jwebunit-users
+                       </archive>
+                       <post>[email protected]</post>
+               </mailingList>
+       </mailingLists>
+       <developers>
+               <developer>
+                       <id>henryju</id>
+                       <name>Julien Henry</name>
+                       <email>henryju at users.sourceforge.net</email>
+                       <url />
+                       <organization>Capgemini</organization>
+                       
<organizationUrl>http://www.capgemini.com</organizationUrl>
+                       <roles>
+                               <role>Developer</role>
+                       </roles>
+                       <timezone>+2</timezone>
+               </developer>
+               <developer>
+                       <id>joshlane</id>
+                       <name>Josh Lane</name>
+                       <email>joshlane at users.sourceforge.net</email>
+                       <url />
+                       <organization>Brontes Technologies</organization>
+                       <organizationUrl>
+                               
http://solutions.3m.com/wps/portal/3M/en_US/LavaCOS/3MESPE-LavaCOS/
+                       </organizationUrl>
+                       <roles>
+                               <role>Developer</role>
+                       </roles>
+                       <timezone>-5</timezone>
+               </developer>
+               <developer>
+                       <id>jevonwright</id>
+                       <name>Jevon Wright</name>
+                       <email>jevonwright at users.sourceforge.net</email>
+                       <url>http://www.jevon.org</url>
+                       <organization />
+                       <organizationUrl />
+                       <roles>
+                               <role>Developer</role>
+                       </roles>
+                       <timezone>+13</timezone>
+               </developer>
+       </developers>
+       <contributors>
+               <contributor>
+                       <name>Jim Weaver</name>
+                       <email>jimweaver at users.sourceforge.net</email>
+                       <organization>Thoughtworks</organization>
+                       <roles>
+                               <role>All-Hands person</role>
+                       </roles>
+                       <timezone>-5</timezone>
+               </contributor>
+               <contributor>
+                       <name>Wilkes Joiner</name>
+                       <email>wilkesj at users.sourceforge.net</email>
+                       <organization />
+                       <roles>
+                               <role>All-Hands person</role>
+                       </roles>
+               </contributor>
+               <contributor>
+                       <name>Vivek Venugopalan</name>
+                       <email>vivek at magic hypen cauldron dot com</email>
+                       <url>http://www.magic-cauldron.com</url>
+                       <organization />
+                       <roles>
+                               <role>All-Hands person</role>
+                       </roles>
+                       <timezone>+5.5</timezone>
+               </contributor>
+               <contributor>
+                       <name>Martijn Dashorst</name>
+                       <email>dashorst at users.sourceforge.net</email>
+                       <url>http://www.dashorst.dds.nl</url>
+                       <organization>Topicus B.V.</organization>
+                       <roles>
+                               <role>All-Hands person</role>
+                       </roles>
+                       <timezone>+1</timezone>
+               </contributor>
+               <contributor>
+                       <name>Nicholas Neuberger</name>
+                       <email>nneuberger at users.sourceforge.net</email>
+                       <url />
+                       <organization>Sunshine Solar</organization>
+                       <roles>
+                               <role>Developer</role>
+                       </roles>
+                       <timezone>-6</timezone>
+               </contributor>
+               <contributor>
+                       <name>Jon Frisby</name>
+                       <email>[email protected]</email>
+                       <url />
+                       <organization />
+                       <organizationUrl />
+                       <roles />
+                       <timezone />
+                       <properties />
+               </contributor>
+               <contributor>
+                       <name>Fred Burlet</name>
+                       <email>[email protected]</email>
+                       <url />
+                       <organization />
+                       <organizationUrl />
+                       <roles />
+                       <timezone />
+                       <properties />
+               </contributor>
+               <contributor>
+                       <name>Mike C</name>
+                       <email>mtc3bmtc3b at users.sourceforge.net</email>
+                       <url />
+                       <organization />
+                       <organizationUrl />
+                       <roles />
+                       <timezone />
+                       <properties />
+               </contributor>
+       </contributors>
+       <licenses>
+               <license>
+                       <name>GPL License</name>
+                       <url>${topDirectoryLocation}/LICENSE.txt</url>
+               </license>
+       </licenses>
+       <scm>
+               
<connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.3</connection>
+               
<developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.3</developerConnection>
+               
<url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/tags/jwebunit-2.3</url>
+       </scm>
+       <organization>
+               <name>SourceForge</name>
+               <url>http://sourceforge.net</url>
+       </organization>
+       <repositories>
+               <repository>
+                       <id>selenium</id>
+                       <name>Selenium release repository</name>
+                       
<url>http://nexus.openqa.org/content/repositories/releases</url>
+               </repository>
+       </repositories>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <version>2.2-beta-2</version>
+                               <configuration>
+                                       <attach>false</attach>
+                                       <descriptors>
+                                               <descriptor>
+                                                       src/assemble/release.xml
+                                               </descriptor>
+                                       </descriptors>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-release-plugin</artifactId>
+                               <version>2.0</version>
+                               <configuration>
+                                       
<autoVersionSubmodules>true</autoVersionSubmodules>
+                                       <preparationGoals>clean 
install</preparationGoals>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <version>2.1</version>
+                               <configuration>
+                                       <source>1.5</source>
+                                       <target>1.5</target>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-toolchains-plugin</artifactId>
+                               <version>1.0</version>
+                               <executions>
+                                       <execution>
+                                               <phase>validate</phase>
+                                               <goals>
+                                                       <goal>toolchain</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                               <configuration>
+                                       <toolchains>
+                                               <jdk>
+                                                       <version>1.5</version>
+                                                       <vendor>sun</vendor>
+                                               </jdk>
+                                       </toolchains>
+                               </configuration>
+                       </plugin>
+               </plugins>
+               <pluginManagement>
+                       <plugins>
+                               <plugin>
+                                       <inherited>true</inherited>
+                                       <groupId>org.codehaus.mojo</groupId>
+                                       
<artifactId>javacc-maven-plugin</artifactId>
+                                       <version>2.4</version>
+                               </plugin>
+                               <plugin>
+                                       <inherited>true</inherited>
+                                       <groupId>org.codehaus.mojo</groupId>
+                                       
<artifactId>exec-maven-plugin</artifactId>
+                                       <version>1.1-beta-1</version>
+                               </plugin>
+                               <plugin>
+                                       <inherited>true</inherited>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-site-plugin</artifactId>
+                                       <version>2.1</version>
+                               </plugin>
+                       </plugins>
+               </pluginManagement>
+       </build>
+       <properties>
+               <topDirectoryLocation>.</topDirectoryLocation>
+               
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
+       <dependencyManagement>
+               <dependencies>
+                       <dependency>
+                               <groupId>junit</groupId>
+                               <artifactId>junit</artifactId>
+                               <version>4.7</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>junitperf</groupId>
+                               <artifactId>junitperf</artifactId>
+                               <version>1.8</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.mortbay.jetty</groupId>
+                               <artifactId>jetty</artifactId>
+                               <version>6.1.12</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>commons-fileupload</groupId>
+                               <artifactId>commons-fileupload</artifactId>
+                               <version>1.2</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>commons-io</groupId>
+                               <artifactId>commons-io</artifactId>
+                               <version>1.4</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>net.sourceforge.htmlunit</groupId>
+                               <artifactId>htmlunit</artifactId>
+                               <version>2.7</version>
+                       </dependency>
+                       <dependency>
+                               
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
+                               
<artifactId>selenium-java-client-driver</artifactId>
+                               <version>1.0.1</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>regexp</groupId>
+                               <artifactId>regexp</artifactId>
+                               <version>1.3</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>javax.servlet</groupId>
+                               <artifactId>servlet-api</artifactId>
+                               <version>2.4</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.slf4j</groupId>
+                               <artifactId>slf4j-api</artifactId>
+                               <version>1.5.0</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.slf4j</groupId>
+                               <artifactId>slf4j-log4j12</artifactId>
+                               <version>1.5.0</version>
+                               <optional>true</optional>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
+       <reporting>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-checkstyle-plugin</artifactId>
+                               <version>2.4</version>
+                               <configuration>
+                                       <configLocation>
+                                               
${basedir}/${topDirectoryLocation}/src/checkstyle/jwebunit-checkstyle.xml
+                                       </configLocation>
+                                       <headerLocation>
+                                               
${basedir}/${topDirectoryLocation}/src/checkstyle/header-checkstyle.txt
+                                       </headerLocation>
+                                       <xrefLocation>xref</xrefLocation>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               
<artifactId>maven-surefire-report-plugin</artifactId>
+                               <version>2.4.3</version>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>jdepend-maven-plugin</artifactId>
+                               <version>2.0-beta-2</version>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>taglist-maven-plugin</artifactId>
+                               <version>2.4</version>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-changes-plugin</artifactId>
+                               <version>2.2</version>
+                               <inherited>false</inherited>
+                               <reportSets>
+                                       <reportSet>
+                                               <reports>
+                                                       
<report>changes-report</report>
+                                               </reports>
+                                       </reportSet>
+                               </reportSets>
+                               <configuration>
+                                       <issueLinkTemplate>
+                                               
http://sourceforge.net/support/tracker.php?aid=%ISSUE%
+                                       </issueLinkTemplate>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>findbugs-maven-plugin</artifactId>
+                               <version>2.3</version>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-javadoc-plugin</artifactId>
+                               <version>2.5</version>
+                               <reportSets>
+                                       <reportSet>
+                                               <id>aggregate</id>
+                                               <configuration>
+                                                       <excludePackageNames>
+                                                               
net.sourceforge.jwebunit.javacc:net.sourceforge.jwebunit.tests
+                                                       </excludePackageNames>
+                                                               <links>
+                                                                       <link>
+                                                                               
http://java.sun.com/j2se/1.5.0/docs/api/
+                                                                       </link>
+                                                                       <link>
+                                                                               
http://hc.apache.org/httpclient-3.x/apidocs/
+                                                                       </link>
+                                                                       
<link>http://junit.sourceforge.net/junit3.8.1/javadoc/</link>
+                                                                       <link>
+                                                                               
http://htmlunit.sourceforge.net/apidocs/
+                                                                       </link>
+                                                                       
<link>http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/</link>
+                                                               </links>
+                                                               <groups>
+                                                                       <group>
+                                                                               
<title>Core Packages</title>
+                                                                               
<packages>
+                                                                               
        
net.sourceforge.jwebunit.api*:net.sourceforge.jwebunit.junit*:net.sourceforge.jwebunit.exception*:net.sourceforge.jwebunit.html*:net.sourceforge.jwebunit.javascript*:net.sourceforge.jwebunit.util*
+                                                                               
</packages>
+                                                                       </group>
+                                                                       <group>
+                                                                               
<title>HtmlUnit Packages</title>
+                                                                               
<packages>
+                                                                               
        net.sourceforge.jwebunit.htmlunit*
+                                                                               
</packages>
+                                                                       </group>
+                                                                       <group>
+                                                                               
<title>Selenium Packages</title>
+                                                                               
<packages>
+                                                                               
        net.sourceforge.jwebunit.selenium*
+                                                                               
</packages>
+                                                                       </group>
+                                                               </groups>
+                                               </configuration>
+                                               <reports>
+                                                       
<report>aggregate</report>
+                                               </reports>
+                                       </reportSet>
+                               </reportSets>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jxr-plugin</artifactId>
+                               <version>2.1</version>
+                               <configuration>
+                                       <aggregate>true</aggregate>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-pmd-plugin</artifactId>
+                               <version>2.4</version>
+                               <configuration>
+                                       <xrefLocation>
+                                               
${project.reporting.outputDirectory}/${topDirectoryLocation}/xref
+                                       </xrefLocation>
+                                       <targetJdk>1.5</targetJdk>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               
<artifactId>maven-project-info-reports-plugin</artifactId>
+                               <version>2.1.2</version>
+                               <reportSets>
+                                       <reportSet>
+                                               <reports>
+                                                       <report>index</report>
+                                                       
<report>dependencies</report>
+                                                       
<report>project-team</report>
+                                                       
<report>mailing-list</report>
+                                                       <report>license</report>
+                                                       
<report>issue-tracking</report>
+                                                       <report>scm</report>
+                                                       <report>summary</report>
+                                               </reports>
+                                       </reportSet>
+                               </reportSets>
+                       </plugin>
+               </plugins>
+       </reporting>
+       <distributionManagement>
+               <site>
+                       <id>jwebunit-website</id>
+                       <name>JWebUnit WebSite - Sourceforge</name>
+                       <url>
+                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs
+                       </url>
+               </site>
+               <repository>
+                       <id>jwebunit-m2-repo</id>
+                       <url>
+                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo
+                       </url>
+                       <name>JWebUnit Maven 2 Repository</name>
+               </repository>
+               <snapshotRepository>
+                       <id>jwebunit-m2-repo-snapshots</id>
+                       <url>
+                               
scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs/m2-repo-snapshots
+                       </url>
+                       <name>JWebUnit Maven 2 Snapshots Repository</name>
+               </snapshotRepository>
+       </distributionManagement>
+</project>


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

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
JWebUnit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to