Skip to content

Commit

Permalink
Updated pom dependency management and test-scoped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jekh committed Feb 27, 2015
1 parent 711a317 commit c5f7e85
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
6 changes: 1 addition & 5 deletions browsermob-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

<properties>
<jackson.version>2.4.4</jackson.version>
<selenium.version>2.43.0</selenium.version>

<unit-test-jetty.version>7.6.16.v20140903</unit-test-jetty.version>
</properties>
Expand Down Expand Up @@ -108,13 +107,11 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -164,8 +161,7 @@

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>

Expand Down
27 changes: 25 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<slf4j.version>1.7.10</slf4j.version>
<selenium.version>2.43.1</selenium.version>

<maven-jar-plugin.version>2.5</maven-jar-plugin.version>

<log4j.version>2.1</log4j.version>
<log4j.version>2.2</log4j.version>
</properties>

<build>
Expand Down Expand Up @@ -192,7 +193,29 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.0.5-beta</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit c5f7e85

Please sign in to comment.