Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update libraries versions #9

Merged
merged 1 commit into from Sep 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 30 additions & 10 deletions pom.xml
Expand Up @@ -78,25 +78,28 @@

<!-- Dependencies versions -->
<jsoup.version>1.11.2</jsoup.version>
<commons-io.version>2.5</commons-io.version>
<commons-lang3.version>3.5</commons-lang3.version>
<commons-io.version>2.6</commons-io.version>
<commons-lang3.version>3.8</commons-lang3.version>
<commons-collections.version>3.2.2</commons-collections.version>
<guava.version>20.0</guava.version>
<logback-classic.version>1.1.8</logback-classic.version>
<commons-collections4.version>4.2</commons-collections4.version>
<guava.version>26.0-jre</guava.version>
<logback-classic.version>1.2.3</logback-classic.version>
<typesafe.version>1.3.3</typesafe.version>

<!-- Test deps versions -->
<junit.version>4.12</junit.version>
<junit5.version>5.2.0</junit5.version>
<junit5.version>5.3.1</junit5.version>
<junit5-surefire.version>1.2.0</junit5-surefire.version>
<hamcrest.version>1.3</hamcrest.version>
<powermock.version>1.6.6</powermock.version>
<assertj.version>3.11.1</assertj.version>
<powermock.version>1.7.4</powermock.version>
<mockito.version>2.0.2-beta</mockito.version>
<mockito2.version>2.21.0</mockito2.version>
<mockito2.version>2.22.0</mockito2.version>
<zohhak.version>1.1.1</zohhak.version>
<hamcrest-json.version>0.2</hamcrest-json.version>
<system-rules.version>1.16.1</system-rules.version>
<wiremock.version>2.18.0</wiremock.version>
<free-port-finder.version>1.1.1</free-port-finder.version>

<maven.nexus.staging.plugin.version>1.6.7</maven.nexus.staging.plugin.version>
<maven.gpg.plugin.version>1.5</maven.gpg.plugin.version>
Expand Down Expand Up @@ -194,6 +197,11 @@
<artifactId>commons-collections</artifactId>
<version>${commons-collections.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${commons-collections4.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
Expand Down Expand Up @@ -261,19 +269,19 @@
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito2.version}</version>
<scope>test</scope>
<scope>compile</scope> <!-- compiled against in knotx-junit5 -->
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito2.version}</version>
<scope>test</scope>
<scope>compile</scope> <!-- compiled against in knotx-junit5 -->
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
<scope>compile</scope> <!-- compiled against in knotx-junit5 -->
</dependency>
<dependency>
<groupId>com.googlecode.zohhak</groupId>
Expand Down Expand Up @@ -305,6 +313,18 @@
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit5-surefire.version}</version>
</dependency>
<dependency>
<groupId>me.alexpanov</groupId>
<artifactId>free-port-finder</artifactId>
<version>${free-port-finder.version}</version>
<scope>compile</scope> <!-- compiled against in knotx-junit5 -->
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>

<!-- JUnit5 BOM -->
<dependency>
Expand Down