Skip to content

Commit

Permalink
Update dependencies to the latest versions
Browse files Browse the repository at this point in the history
Update .gitignore
  • Loading branch information
Ardesco committed Feb 2, 2017
1 parent cb603a6 commit 8f201b0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@

# Binary Downloads #
####################
**/selenium_standalone/
**/selenium_standalone_zips/
**/selenium_standalone_zips/
**/selenium_standalone_binaries/
13 changes: 9 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<selenium.version>3.0.0</selenium.version>
<!--Dependency Versions-->
<selenium.version>3.0.1</selenium.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<phantomjsdriver.version>1.3.0</phantomjsdriver.version>
<testng.version>6.10</testng.version>
<!--Configuration Properties-->
<overwrite.binaries>false</overwrite.binaries>
<browser>firefox</browser>
<threads>1</threads>
Expand All @@ -58,7 +63,7 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<version>${hamcrest-all.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
Expand Down Expand Up @@ -87,13 +92,13 @@
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>1.3.0</version>
<version>${phantomjsdriver.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 8f201b0

Please sign in to comment.