We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e957c commit c6359ddCopy full SHA for c6359dd
README.md
@@ -24,7 +24,7 @@ A lightweight wrapper to the [JDK 11+ Java Http Client](http://openjdk.java.net/
24
<dependency>
25
<groupId>io.avaje</groupId>
26
<artifactId>avaje-http-client</artifactId>
27
- <version>1.12</version>
+ <version>1.14</version>
28
</dependency>
29
```
30
@@ -37,7 +37,6 @@ Create a HttpClientContext with a baseUrl, Jackson or Gson based JSON
37
public HttpClientContext client() {
38
return HttpClientContext.newBuilder()
39
.withBaseUrl(baseUrl)
40
- .withRequestListener(new RequestLogger())
41
.withBodyAdapter(new JacksonBodyAdapter(new ObjectMapper()))
42
// .withBodyAdapter(new GsonBodyAdapter(new Gson()))
43
.build();
0 commit comments