Skip to content

Commit

Permalink
#41 Updated Dependencies & WebDriver
Browse files Browse the repository at this point in the history
Updated WebDriver:
- geckodriver (0.26.0)
- chromedriver (77.0.3865.40)

Updated Dependencies:
- webdriverextensions-maven-plugin (3.2.0)
- commons-lang3 (3.9)
- log4j-core (2.12.1)
  • Loading branch information
helkv committed Oct 16, 2019
1 parent 0e1b3d6 commit 1ae3191
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<plugin>
<groupId>com.github.webdriverextensions</groupId>
<artifactId>webdriverextensions-maven-plugin</artifactId>
<version>3.1.3</version>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand All @@ -42,29 +42,29 @@
<name>geckodriver</name>
<platform>windows</platform>
<bit>64</bit>
<version>0.24.0</version>
<url>https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-win64.zip</url>
<version>0.26.0</version>
<url>https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-win64.zip</url>
</driver>
<driver>
<name>geckodriver</name>
<platform>linux</platform>
<bit>64</bit>
<version>0.24.0</version>
<url>https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz</url>
<version>0.26.0</version>
<url>https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz</url>
</driver>
<driver>
<name>chromedriver</name>
<platform>windows</platform>
<bit>32</bit>
<version>2.46</version>
<url>https://chromedriver.storage.googleapis.com/2.46/chromedriver_win32.zip</url>
<version>77.0.3865.40</version>
<url>https://chromedriver.storage.googleapis.com/77.0.3865.40/chromedriver_win32.zip</url>
</driver>
<driver>
<name>chromedriver</name>
<platform>linux</platform>
<bit>64</bit>
<version>2.46</version>
<url>https://chromedriver.storage.googleapis.com/2.46/chromedriver_linux64.zip</url>
<version>77.0.3865.40</version>
<url>https://chromedriver.storage.googleapis.com/77.0.3865.40/chromedriver_linux64.zip</url>
</driver>
</drivers>
</configuration>
Expand Down Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
<version>3.9</version>
</dependency>

<dependency>
Expand All @@ -111,7 +111,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.11.1</version>
<version>2.12.1</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 1ae3191

Please sign in to comment.