mirror of https://github.com/apache/archiva.git
upgrade selenium plugin for new firefox versions
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/archiva-1.3.x@1523978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e6e9f630f
commit
7b98b75985
|
@ -29,6 +29,14 @@
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Archiva Web :: Application Tests</name>
|
<name>Archiva Web :: Application Tests</name>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<tomcat5x.version>5.5.27</tomcat5x.version>
|
||||||
|
<cargo.wait>false</cargo.wait>
|
||||||
|
<cargo.install.dir>cargo-installs</cargo.install.dir>
|
||||||
|
<seleniumPluginVersion>2.3</seleniumPluginVersion>
|
||||||
|
<selenium-server.version>2.33.0</selenium-server.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.testng</groupId>
|
<groupId>org.testng</groupId>
|
||||||
|
@ -70,13 +78,13 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
|
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
|
||||||
<artifactId>selenium-java-client-driver</artifactId>
|
<artifactId>selenium-java-client-driver</artifactId>
|
||||||
<version>1.0.1</version>
|
<version>1.0.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>commons-logging</groupId>
|
<groupId>commons-logging</groupId>
|
||||||
<artifactId>commons-logging</artifactId>
|
<artifactId>commons-logging</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
@ -186,6 +194,34 @@
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>selenium-maven-plugin</artifactId>
|
||||||
|
<version>${seleniumPluginVersion}</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.seleniumhq.selenium</groupId>
|
||||||
|
<artifactId>selenium-server</artifactId>
|
||||||
|
<version>${selenium-server.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.seleniumhq.selenium</groupId>
|
||||||
|
<artifactId>selenium-remote-driver</artifactId>
|
||||||
|
<version>${selenium-server.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.seleniumhq.selenium</groupId>
|
||||||
|
<artifactId>selenium-api</artifactId>
|
||||||
|
<version>${selenium-server.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
@ -496,9 +532,4 @@
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
<properties>
|
|
||||||
<tomcat5x.version>5.5.27</tomcat5x.version>
|
|
||||||
<cargo.wait>false</cargo.wait>
|
|
||||||
<cargo.install.dir>cargo-installs</cargo.install.dir>
|
|
||||||
</properties>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue