2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-03-15 08:52:24 -04:00
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2019-12-05 09:56:52 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>akka-http</artifactId>
|
|
|
|
<name>akka-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>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>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<properties>
|
|
|
|
<akka.http.version>10.0.11</akka.http.version>
|
|
|
|
<akka.stream.version>2.5.11</akka.stream.version>
|
|
|
|
</properties>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
</project>
|