diff options
author | Vitaly Takmazov | 2023-01-18 20:39:41 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-19 14:30:01 +0300 |
commit | 12e2206f9d24b29c8276b2743603635620643444 (patch) | |
tree | 3af762f3fa6a1ce016df219fb88ab2b394ba35bb /pom.xml | |
parent | 5b0f0bebda5d6369111ae35f8c335324ffa4cc7e (diff) |
RestTemplate -> OkHttpClient
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -82,8 +82,16 @@ </exclusions> </dependency> <dependency> - <groupId>org.apache.httpcomponents.client5</groupId> - <artifactId>httpclient5</artifactId> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>okhttp</artifactId> + </dependency> + <dependency> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>logging-interceptor</artifactId> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> |