2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2019-12-05 09:56:52 -05:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>libraries-http</artifactId>
|
|
|
|
<name>libraries-http</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<!-- Dependencies for response decoder with okhttp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>${com.squareup.okhttp3.version}</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<!-- Dependencies for google http client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client</artifactId>
|
|
|
|
<version>${googleclient.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client-jackson2</artifactId>
|
|
|
|
<version>${googleclient.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<!-- Retrofit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>retrofit</artifactId>
|
|
|
|
<version>${retrofit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>converter-gson</artifactId>
|
|
|
|
<version>${retrofit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>adapter-rxjava</artifactId>
|
|
|
|
<version>${retrofit.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.asynchttpclient</groupId>
|
|
|
|
<artifactId>async-http-client</artifactId>
|
|
|
|
<version>${async.http.client.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${gson.version}</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>${com.squareup.okhttp3.version}</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mashape.unirest</groupId>
|
|
|
|
<artifactId>unirest-java</artifactId>
|
|
|
|
<version>${unirest.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- javalin -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.javalin</groupId>
|
|
|
|
<artifactId>javalin</artifactId>
|
|
|
|
<version>${javalin.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>logging-interceptor</artifactId>
|
|
|
|
<version>${logging-interceptor.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>${httpclient.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<properties>
|
2020-01-15 15:23:26 -05:00
|
|
|
<gson.version>2.8.5</gson.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<httpclient.version>4.5.3</httpclient.version>
|
|
|
|
<jackson.version>2.9.8</jackson.version>
|
|
|
|
<assertj.version>3.6.2</assertj.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<com.squareup.okhttp3.version>3.14.2</com.squareup.okhttp3.version>
|
|
|
|
<googleclient.version>1.23.0</googleclient.version>
|
|
|
|
<async.http.client.version>2.2.0</async.http.client.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<retrofit.version>2.3.0</retrofit.version>
|
|
|
|
<unirest.version>1.4.9</unirest.version>
|
|
|
|
<javalin.version>1.6.0</javalin.version>
|
|
|
|
<logging-interceptor.version>3.9.0</logging-interceptor.version>
|
|
|
|
</properties>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|