48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?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-2</artifactId> | ||
|  |     <name>libraries-http-2</name> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-modules</artifactId> | ||
|  |         <version>1.0.0-SNAPSHOT</version> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |          <!-- Dependencies for response decoder with okhttp --> | ||
|  |         <dependency> | ||
|  |             <groupId>com.squareup.okhttp3</groupId> | ||
|  |             <artifactId>okhttp</artifactId> | ||
|  |             <version>${okhttp.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>${gson.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.squareup.okhttp3</groupId> | ||
|  |             <artifactId>mockwebserver</artifactId> | ||
|  |             <version>${mockwebserver.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <okhttp.version>3.14.2</okhttp.version> | ||
|  |         <gson.version>2.8.5</gson.version> | ||
|  |         <mockwebserver.version>3.14.2</mockwebserver.version> | ||
|  |         <jackson.version>2.9.8</jackson.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |