| <?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>pekko-sample-replicated-event-sourcing-java</artifactId> |
| <groupId>org.apache.pekko</groupId> |
| <name>Apache Pekko replicated event sourcing multi dc sample</name> |
| <version>1.0</version> |
| |
| <licenses> |
| <license> |
| <name>Public Domain (CC0)</name> |
| <url>http://creativecommons.org/publicdomain/zero/1.0/</url> |
| </license> |
| </licenses> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <pekko.version>1.5.0</pekko.version> |
| <pekko-persistence-cassandra.version>1.1.0</pekko-persistence-cassandra.version> |
| <pekko-http.version>1.3.0</pekko-http.version> |
| <pekko-management.version>1.2.1</pekko-management.version> |
| <scala.binary.version>3</scala.binary.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-cluster-sharding-typed_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-cluster_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-actor_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-cluster-tools_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-serialization-jackson_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-persistence-typed_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-persistence-query_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-persistence-cassandra_${scala.binary.version}</artifactId> |
| <version>${pekko-persistence-cassandra.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-persistence-cassandra-launcher_${scala.binary.version}</artifactId> |
| <version>${pekko-persistence-cassandra.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-http_${scala.binary.version}</artifactId> |
| <version>${pekko-http.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-http-spray-json_${scala.binary.version}</artifactId> |
| <version>${pekko-http.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-management_${scala.binary.version}</artifactId> |
| <version>${pekko-management.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-management-cluster-http_${scala.binary.version}</artifactId> |
| <version>${pekko-management.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>1.3.15</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-actor-testkit-typed_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.13.2</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.8.1</version> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| <compilerArgs> |
| <arg>-Xlint:unchecked</arg> |
| <arg>-Xlint:deprecation</arg> |
| <arg>-parameters</arg> |
| </compilerArgs> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |