43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>akka-persistence-parent</artifactId>
|
|
<name>Akka Persistence Modules</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<artifactId>akka</artifactId>
|
|
<groupId>se.scalablesolutions.akka</groupId>
|
|
<version>0.7-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>akka-persistence-common</module>
|
|
<module>akka-persistence-redis</module>
|
|
<module>akka-persistence-mongo</module>
|
|
<module>akka-persistence-cassandra</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>akka-core</artifactId>
|
|
<groupId>${project.groupId}</groupId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- For Testing -->
|
|
<dependency>
|
|
<groupId>org.scalatest</groupId>
|
|
<artifactId>scalatest</artifactId>
|
|
<version>1.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|