Skip to content

Commit fe81f15

Browse files
committed
upgrade to latest selenium
1 parent f49804e commit fe81f15

1 file changed

Lines changed: 19 additions & 9 deletions

File tree

pom.xml

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
~ Michel Racic (http://rac.su/+) => github.com/rac2030
55
-->
66

7-
<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/xsd/maven-4.0.0.xsd">
7+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
89
<modelVersion>4.0.0</modelVersion>
910

1011
<groupId>ch.racic.selenium.helper</groupId>
@@ -21,7 +22,7 @@
2122

2223
<properties>
2324
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24-
<selenium.version>2.43.1</selenium.version>
25+
<selenium.version>2.44.0</selenium.version>
2526
</properties>
2627

2728
<licenses>
@@ -34,8 +35,8 @@
3435
<connection>scm:git:git@github.com:rac2030/SeleniumDownloadHelper.git</connection>
3536
<developerConnection>scm:git:git@github.com:rac2030/SeleniumDownloadHelper.git</developerConnection>
3637
<url>http://github.com/rac2030/SeleniumDownloadHelper</url>
37-
<tag>HEAD</tag>
38-
</scm>
38+
<tag>HEAD</tag>
39+
</scm>
3940

4041
<distributionManagement>
4142
<snapshotRepository>
@@ -66,19 +67,27 @@
6667
<dependencies>
6768
<dependency>
6869
<groupId>org.seleniumhq.selenium</groupId>
69-
<artifactId>selenium-firefox-driver</artifactId>
70+
<artifactId>selenium-ie-driver</artifactId>
7071
<version>${selenium.version}</version>
7172
</dependency>
7273
<dependency>
73-
<groupId>org.seleniumhq.selenium</groupId>
74-
<artifactId>selenium-safari-driver</artifactId>
75-
<version>${selenium.version}</version>
74+
<groupId>org.seleniumhq.selenium</groupId>
75+
<artifactId>selenium-htmlunit-driver</artifactId>
76+
<version>${selenium.version}</version>
7677
</dependency>
7778

79+
<!-- libs only for tests, should all have <scope>test</scope> -->
7880
<dependency>
7981
<groupId>org.seleniumhq.selenium</groupId>
80-
<artifactId>selenium-java</artifactId>
82+
<artifactId>selenium-firefox-driver</artifactId>
8183
<version>${selenium.version}</version>
84+
<scope>test</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.seleniumhq.selenium</groupId>
88+
<artifactId>selenium-safari-driver</artifactId>
89+
<version>${selenium.version}</version>
90+
<scope>test</scope>
8291
</dependency>
8392

8493
<dependency>
@@ -117,6 +126,7 @@
117126
<version>0.1.4</version>
118127
<scope>test</scope>
119128
</dependency>
129+
120130
</dependencies>
121131

122132
<build>

0 commit comments

Comments
 (0)