Skip to content

Commit f64f920

Browse files
committed
pom.xml: update Selenium to 2.53.0
@see https://raw.githubusercontent.com/SeleniumHQ/selenium/master/java/CHANGELOG No functional changes.
1 parent ff401df commit f64f920

File tree

1 file changed

+17
-26
lines changed

1 file changed

+17
-26
lines changed

pom.xml

Lines changed: 17 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818

1919
<properties>
2020
<lombok.version>1.16.8</lombok.version>
21-
<selenium.version>2.49.0</selenium.version>
21+
<selenium.version>2.53.0</selenium.version>
22+
<selenium.htmlunit.version>2.20</selenium.htmlunit.version>
2223
<subethasmtp.version>3.1.7</subethasmtp.version>
2324
<aspectj.version>1.8.5</aspectj.version>
2425
<javax.validation.version>1.1.0.Final</javax.validation.version>
@@ -369,39 +370,29 @@
369370

370371
<dependency>
371372
<groupId>org.seleniumhq.selenium</groupId>
372-
<artifactId>selenium-java</artifactId>
373+
<artifactId>selenium-api</artifactId>
373374
<version>${selenium.version}</version>
374375
<scope>test</scope>
376+
</dependency>
377+
378+
<dependency>
379+
<groupId>org.seleniumhq.selenium</groupId>
380+
<artifactId>selenium-support</artifactId>
381+
<version>${selenium.version}</version>
382+
<scope>test</scope>
383+
</dependency>
384+
385+
<dependency>
386+
<groupId>org.seleniumhq.selenium</groupId>
387+
<artifactId>htmlunit-driver</artifactId>
388+
<version>${selenium.htmlunit.version}</version>
389+
<scope>test</scope>
375390
<exclusions>
376391
<exclusion>
377392
<!-- Because we use jcl-over-slf4j instead -->
378393
<groupId>commons-logging</groupId>
379394
<artifactId>commons-logging</artifactId>
380395
</exclusion>
381-
<exclusion>
382-
<groupId>org.seleniumhq.selenium</groupId>
383-
<artifactId>selenium-android-driver</artifactId>
384-
</exclusion>
385-
<exclusion>
386-
<groupId>org.seleniumhq.selenium</groupId>
387-
<artifactId>selenium-chrome-driver</artifactId>
388-
</exclusion>
389-
<exclusion>
390-
<groupId>org.seleniumhq.selenium</groupId>
391-
<artifactId>selenium-firefox-driver</artifactId>
392-
</exclusion>
393-
<exclusion>
394-
<groupId>org.seleniumhq.selenium</groupId>
395-
<artifactId>selenium-ie-driver</artifactId>
396-
</exclusion>
397-
<exclusion>
398-
<groupId>org.seleniumhq.selenium</groupId>
399-
<artifactId>selenium-iphone-driver</artifactId>
400-
</exclusion>
401-
<exclusion>
402-
<groupId>org.seleniumhq.selenium</groupId>
403-
<artifactId>selenium-safari-driver</artifactId>
404-
</exclusion>
405396
</exclusions>
406397
</dependency>
407398

0 commit comments

Comments
 (0)