cluster
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.pragmatica-lite.aether</groupId>
<artifactId>cluster</artifactId>
<version>0.8.1</version>
</dependency><?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>
<parent>
<groupId>org.pragmatica-lite.aether</groupId>
<artifactId>aether</artifactId>
<version>0.8.1</version>
</parent>
<artifactId>cluster</artifactId>
<name>Aether Cluster</name>
<dependencies>
<!-- Internal -->
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>messaging</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>utility</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>consensus</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>tcp</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>serialization-fury</artifactId>
</dependency>
<dependency>
<groupId>org.pragmatica-lite</groupId>
<artifactId>serialization-kryo</artifactId>
</dependency>
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-core</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Network -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>slf4j-tinylog</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>tinylog-impl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>