raft-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.x-infra-lab</groupId>
<artifactId>raft-core</artifactId>
<version>0.1.0-RC2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.x-infra-lab</groupId>
<artifactId>raft-core</artifactId>
<version>0.1.0-RC2</version>
<name>x-raft-lib :: raft-core</name>
<description>Pure Raft consensus state machine. Zero I/O, zero network. The host
application supplies Storage and Transport implementations (see
sibling modules raft-storage-rocksdb / raft-transport-grpc) and
drives ticks and the Ready/Advance loop.</description>
<url>https://github.com/x-infra-lab/x-raft-lib/raft-core</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>JoeCqupt</id>
<name>JoeCqupt</name>
<email>joe469391363@gmail.com</email>
<organization>x-infra-lab</organization>
<organizationUrl>https://github.com/x-infra-lab</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/x-infra-lab/x-raft-lib.git/raft-core</connection>
<developerConnection>scm:git:git@github.com:x-infra-lab/x-raft-lib.git/raft-core</developerConnection>
<url>https://github.com/x-infra-lab/x-raft-lib/raft-core</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.x-infra-lab</groupId>
<artifactId>raft-proto</artifactId>
<version>0.1.0-RC2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>4.35.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>