| <?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-cluster-java</artifactId> |
| <groupId>org.apache.pekko</groupId> |
| <name>Pekko Cluster in Java</name> |
| <version>empty</version> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <pekko.version>1.5.0</pekko.version> |
| <scala.binary.version>3</scala.binary.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-actor-typed_${scala.binary.version}</artifactId> |
| <version>${pekko.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.pekko</groupId> |
| <artifactId>pekko-cluster-typed_${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>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> |
| </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> |
| <fork>true</fork> |
| <compilerArgs> |
| <arg>-Xlint</arg> |
| <arg>-parameters</arg> |
| </compilerArgs> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |