2022-06-24 12:56:57 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-07-15 00:29:54 -04:00
|
|
|
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">
|
2022-06-24 12:56:57 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>akka-modules</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2024-03-19 10:05:50 -04:00
|
|
|
<name>akka-modules</name>
|
2022-06-24 12:56:57 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modules>
|
2023-12-21 03:30:26 -05:00
|
|
|
<module>akka-actors</module>
|
2022-06-24 12:56:57 -04:00
|
|
|
<module>akka-http</module>
|
|
|
|
<module>akka-streams</module>
|
|
|
|
<module>spring-akka</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
2022-08-28 09:11:49 -04:00
|
|
|
<properties>
|
|
|
|
<scala.version>2.12</scala.version>
|
|
|
|
</properties>
|
|
|
|
|
2022-06-24 12:56:57 -04:00
|
|
|
</project>
|