Skip to content

Commit

Permalink
Bump rest-assured from 3.3.0 to 4.3.2 (#40)
Browse files Browse the repository at this point in the history
* Bump rest-assured from 3.3.0 to 4.3.2

Bumps [rest-assured](https://github.com/rest-assured/rest-assured) from 3.3.0 to 4.3.2.
- [Release notes](https://github.com/rest-assured/rest-assured/releases)
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-3.3.0...rest-assured-4.3.2)

Signed-off-by: dependabot[bot] <support@github.com>

* fix upperbound

Signed-off-by: olivier lamy <olamy@apache.org>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: olivier lamy <olamy@apache.org>
  • Loading branch information
dependabot[bot] and olamy authored Nov 18, 2020
1 parent d259005 commit 2874196
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.176.4</jenkins.version>
<java.level>8</java.level>
<hamcrest.version>2.2</hamcrest.version>
</properties>

<name>Display URL API</name>
Expand Down Expand Up @@ -77,6 +78,11 @@
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -89,7 +95,7 @@
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.3.0</version>
<version>4.3.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -113,13 +119,14 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<!-- upperbound dependency -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>2.2</version>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 2874196

Please sign in to comment.