[JWebUnit-development] SF.net SVN: jwebunit:[886] trunk
Brought to you by:
henryju
|
From: <he...@us...> - 2010-10-27 08:42:04
|
Revision: 886
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=886&view=rev
Author: henryju
Date: 2010-10-27 08:41:56 +0000 (Wed, 27 Oct 2010)
Log Message:
-----------
Updated Selenium deps version and test configuration.
Modified Paths:
--------------
trunk/jwebunit-htmlunit-plugin/pom.xml
trunk/jwebunit-selenium-plugin/pom.xml
trunk/pom.xml
Modified: trunk/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- trunk/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 11:50:58 UTC (rev 885)
+++ trunk/jwebunit-htmlunit-plugin/pom.xml 2010-10-27 08:41:56 UTC (rev 886)
@@ -9,24 +9,6 @@
<artifactId>jwebunit-htmlunit-plugin</artifactId>
<name>HtmlUnit Plugin</name>
<description>HtmlUnit plugin for JWebUnit.</description>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <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>
Modified: trunk/jwebunit-selenium-plugin/pom.xml
===================================================================
--- trunk/jwebunit-selenium-plugin/pom.xml 2010-10-24 11:50:58 UTC (rev 885)
+++ trunk/jwebunit-selenium-plugin/pom.xml 2010-10-27 08:41:56 UTC (rev 886)
@@ -17,20 +17,12 @@
<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>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
+ <version>1.1</version>
<executions>
<execution>
<id>start</id>
@@ -43,15 +35,15 @@
<multiWindow>true</multiWindow>
</configuration>
</execution>
+ <execution>
+ <id>stop</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>stop-server</goal>
+ </goals>
+ </execution>
</executions>
- <dependencies>
- <dependency>
- <groupId>org.openqa.selenium.server</groupId>
- <artifactId>selenium-server</artifactId>
- <version>1.0-beta-1</version>
- </dependency>
- </dependencies>
- </plugin-->
+ </plugin>
</plugins>
</build>
<dependencies>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-24 11:50:58 UTC (rev 885)
+++ trunk/pom.xml 2010-10-27 08:41:56 UTC (rev 886)
@@ -383,7 +383,7 @@
<dependency>
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
<artifactId>selenium-java-client-driver</artifactId>
- <version>1.0.1</version>
+ <version>1.0.2</version>
</dependency>
<dependency>
<groupId>regexp</groupId>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|