44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 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>akka-http</artifactId>
 | |
|     <name>akka-http</name>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.typesafe.akka</groupId>
 | |
|             <artifactId>akka-http_2.12</artifactId>
 | |
|             <version>${akka.http.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.typesafe.akka</groupId>
 | |
|             <artifactId>akka-stream_2.12</artifactId>
 | |
|             <version>${akka.stream.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.typesafe.akka</groupId>
 | |
|             <artifactId>akka-http-jackson_2.12</artifactId>
 | |
|             <version>${akka.http.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.typesafe.akka</groupId>
 | |
|             <artifactId>akka-http-testkit_2.12</artifactId>
 | |
|             <version>${akka.http.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <akka.http.version>10.0.11</akka.http.version>
 | |
|         <akka.stream.version>2.5.11</akka.stream.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |