Skip to content

Commit 4a309e1

Browse files
authored
Add response headers to FeignException (OpenFeign#1452)
* Add response headers to FeignException * Test coverage * Small format issues * Mistyping: unmodified -> unmodifiable
1 parent 215ac38 commit 4a309e1

15 files changed

Lines changed: 299 additions & 180 deletions

File tree

core/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
<properties>
3131
<main.basedir>${project.basedir}/..</main.basedir>
32+
<hamcrest.version>1.3</hamcrest.version>
3233
</properties>
3334

3435
<dependencies>
@@ -63,6 +64,13 @@
6364
<version>${jackson.version}</version>
6465
<scope>test</scope>
6566
</dependency>
67+
68+
<dependency>
69+
<groupId>org.hamcrest</groupId>
70+
<artifactId>hamcrest-core</artifactId>
71+
<version>${hamcrest.version}</version>
72+
<scope>test</scope>
73+
</dependency>
6674
</dependencies>
6775

6876
<build>

0 commit comments

Comments
 (0)