| 
									
										
										
										
											2019-06-16 11:43:26 +05:30
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							|  |  |  | 	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> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<parent> | 
					
						
							|  |  |  | 		<groupId>com.baeldung</groupId> | 
					
						
							|  |  |  | 		<artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  | 		<version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 	</parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.assertj</groupId> | 
					
						
							|  |  |  | 			<artifactId>assertj-core</artifactId> | 
					
						
							|  |  |  | 			<version>${assertj.version}</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<!-- Dependencies for response decoder with okhttp --> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>com.squareup.okhttp3</groupId> | 
					
						
							|  |  |  | 			<artifactId>okhttp</artifactId> | 
					
						
							|  |  |  |             <version>${com.squareup.okhttp3.version}</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <!-- 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> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.google.http-client</groupId> | 
					
						
							|  |  |  |             <artifactId>google-http-client-gson</artifactId> | 
					
						
							|  |  |  |             <version>${googleclient.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-12 17:36:45 +01: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-06-16 11:43:26 +05:30
										 |  |  |         <!-- 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> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>com.fasterxml.jackson.core</groupId> | 
					
						
							|  |  |  | 			<artifactId>jackson-databind</artifactId> | 
					
						
							|  |  |  | 			<version>${jackson.version}</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>com.google.code.gson</groupId> | 
					
						
							|  |  |  | 			<artifactId>gson</artifactId> | 
					
						
							|  |  |  | 			<version>2.8.5</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>com.squareup.okhttp3</groupId> | 
					
						
							|  |  |  | 			<artifactId>mockwebserver</artifactId> | 
					
						
							|  |  |  |             <version>${com.squareup.okhttp3.version}</version> | 
					
						
							|  |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2019-08-12 17:36:45 +01: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> | 
					
						
							| 
									
										
										
										
											2019-06-16 11:43:26 +05:30
										 |  |  |            | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<properties> | 
					
						
							| 
									
										
										
										
											2019-08-12 17:36:45 +01:00
										 |  |  | 		<httpclient.version>4.5.3</httpclient.version> | 
					
						
							|  |  |  | 		<jackson.version>2.9.8</jackson.version> | 
					
						
							| 
									
										
										
										
											2019-06-16 11:43:26 +05:30
										 |  |  | 		<assertj.version>3.6.2</assertj.version> | 
					
						
							|  |  |  |         <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-08-12 17:36:45 +01: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> | 
					
						
							| 
									
										
										
										
											2019-06-16 11:43:26 +05:30
										 |  |  | 	</properties> | 
					
						
							|  |  |  | </project> |