2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 07:44:43 -04:00
|
|
|
<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">
|
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>
|
2022-06-24 12:56:57 -04:00
|
|
|
<artifactId>akka-modules</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<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>
|
2022-08-28 09:11:49 -04:00
|
|
|
<artifactId>akka-http_${scala.version}</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<version>${akka.http.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
2022-08-28 09:11:49 -04:00
|
|
|
<artifactId>akka-stream_${scala.version}</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<version>${akka.stream.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
2022-08-28 09:11:49 -04:00
|
|
|
<artifactId>akka-http-jackson_${scala.version}</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<version>${akka.http.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
2022-08-28 09:11:49 -04:00
|
|
|
<artifactId>akka-http-testkit_${scala.version}</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<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
|
|
|
|
2021-11-09 05:57:03 -05:00
|
|
|
</project>
|