You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/05/25 11:58:58 UTC

svn commit: r947990 - in /geronimo/server/branches/2.1: pom.xml testsupport/testsupport-selenium/pom.xml

Author: genspring
Date: Tue May 25 09:58:58 2010
New Revision: 947990

URL: http://svn.apache.org/viewvc?rev=947990&view=rev
Log:
GEROGERONIMO-5347 Upgrade selenium to support latest version browsers in testsuite

Modified:
    geronimo/server/branches/2.1/pom.xml
    geronimo/server/branches/2.1/testsupport/testsupport-selenium/pom.xml

Modified: geronimo/server/branches/2.1/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1/pom.xml?rev=947990&r1=947989&r2=947990&view=diff
==============================================================================
--- geronimo/server/branches/2.1/pom.xml (original)
+++ geronimo/server/branches/2.1/pom.xml Tue May 25 09:58:58 2010
@@ -2118,7 +2118,25 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>selenium-maven-plugin</artifactId>
-                    <version>1.0-rc-1</version>
+                    <version>1.0.1</version>
+                     <dependencies>
+                        <dependency>
+                            <groupId>org.seleniumhq.selenium.server</groupId>
+                            <artifactId>selenium-server</artifactId>
+                            <classifier>standalone</classifier>
+                            <version>1.0.3</version>
+                            <exclusions>
+                                <exclusion>
+                                    <groupId>org.seleniumhq.selenium.server</groupId>
+                                    <artifactId>selenium-server-coreless</artifactId>
+                                </exclusion>
+                                <exclusion>
+                                    <groupId>org.seleniumhq.selenium.core</groupId>
+                                    <artifactId>selenium-core</artifactId>
+                                </exclusion>
+                            </exclusions>
+                        </dependency>
+                    </dependencies>          
                 </plugin>
 
                 <plugin>

Modified: geronimo/server/branches/2.1/testsupport/testsupport-selenium/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1/testsupport/testsupport-selenium/pom.xml?rev=947990&r1=947989&r2=947990&view=diff
==============================================================================
--- geronimo/server/branches/2.1/testsupport/testsupport-selenium/pom.xml (original)
+++ geronimo/server/branches/2.1/testsupport/testsupport-selenium/pom.xml Tue May 25 09:58:58 2010
@@ -44,17 +44,42 @@
             <scope>compile</scope>
         </dependency>
         
-        <dependency>
-            <groupId>org.seleniumhq.selenium.client-drivers</groupId>
-            <artifactId>selenium-java-client-driver</artifactId>
-            <version>1.0-beta-2</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.seleniumhq.selenium.server</groupId>
-            <artifactId>selenium-server</artifactId>
-            <version>1.0-beta-2</version>
-        </dependency>
+         <dependency>
+                <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+                <artifactId>selenium-java-client-driver</artifactId>
+                <version>1.0.2</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.seleniumhq.selenium.server</groupId>
+                        <artifactId>selenium-server</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>org.seleniumhq.selenium.server</groupId>
+                        <artifactId>selenium-server-coreless</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
+
+            <dependency>
+                <groupId>org.seleniumhq.selenium.server</groupId>
+                <artifactId>selenium-server</artifactId>
+                <classifier>standalone</classifier>
+                <version>1.0.3</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.seleniumhq.selenium.server</groupId>
+                        <artifactId>selenium-server-coreless</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>org.seleniumhq.selenium.core</groupId>
+                        <artifactId>selenium-core</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
         
         <dependency>
             <groupId>org.testng</groupId>