You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2010/10/14 22:28:44 UTC

svn commit: r1022693 - in /geronimo/server/trunk: pom.xml testsuite/pom.xml

Author: gawor
Date: Thu Oct 14 20:28:43 2010
New Revision: 1022693

URL: http://svn.apache.org/viewvc?rev=1022693&view=rev
Log:
switch to latest selenium-maven-plugin which can reuse a single xvfb process for multiple tests

Modified:
    geronimo/server/trunk/pom.xml
    geronimo/server/trunk/testsuite/pom.xml

Modified: geronimo/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml?rev=1022693&r1=1022692&r2=1022693&view=diff
==============================================================================
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Thu Oct 14 20:28:43 2010
@@ -1969,8 +1969,13 @@ only found in cxf
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>selenium-maven-plugin</artifactId>
-                    <version>1.0.1</version>
-                     <dependencies>
+                    <version>1.1-SNAPSHOT</version>
+                    <dependencies>
+                        <dependency>
+                            <groupId>org.apache.ant</groupId>
+                            <artifactId>ant</artifactId>
+                            <version>1.8.1</version>
+                        </dependency>
                         <dependency>
                             <groupId>org.seleniumhq.selenium.server</groupId>
                             <artifactId>selenium-server</artifactId>
@@ -1988,7 +1993,6 @@ only found in cxf
                             </exclusions>
                         </dependency>
                     </dependencies>
-
                 </plugin>
 
                 <plugin>

Modified: geronimo/server/trunk/testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/pom.xml?rev=1022693&r1=1022692&r2=1022693&view=diff
==============================================================================
--- geronimo/server/trunk/testsuite/pom.xml (original)
+++ geronimo/server/trunk/testsuite/pom.xml Thu Oct 14 20:28:43 2010
@@ -361,6 +361,25 @@
 
         <profile>
             <id>headless</id>
+
+            <!-- Remove pluginRepository once selenium-maven-plugin 1.1 is released -->
+            <pluginRepositories>
+                <pluginRepository>
+                    <id>snapshots.nexus.codehaus.org</id>
+                    <name>snapshots.nexus.codehaus.org</name>
+                    <url>https://nexus.codehaus.org/content/repositories/snapshots/</url>
+                    <layout>default</layout>
+                    <snapshots>
+                        <enabled>true</enabled>
+                        <updatePolicy>daily</updatePolicy>
+                        <checksumPolicy>ignore</checksumPolicy>
+                    </snapshots>
+                    <releases>
+                        <enabled>false</enabled>
+                    </releases>
+                </pluginRepository>
+            </pluginRepositories>
+
             <build>
                 <pluginManagement>
                     <plugins>
@@ -374,6 +393,9 @@
                                     <goals>
                                         <goal>xvfb</goal>
                                     </goals>
+                                    <configuration> 
+                                        <reuse>true</reuse>
+                                    </configuration>
                                 </execution>
                             </executions>
                         </plugin>