raft-spi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>raft-spi</artifactId> <version>11.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi: set et smarttab sw=4 tabstop=4: --> <!-- Copyright © 2025 PANTHEON.tech, s.r.o. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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.opendaylight.controller</groupId> <artifactId>bnd-parent</artifactId> <version>11.0.0</version> <relativePath>../../bnd-parent/pom.xml</relativePath> </parent> <artifactId>raft-spi</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <description>Classes that constitute what would be a RAFT protocol API</description> <properties> <maven.javadoc.failOnWarnings>true</maven.javadoc.failOnWarnings> <odlparent.dependency.enforce>true</odlparent.dependency.enforce> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> </dependency> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.annotation</artifactId> </dependency> <dependency> <groupId>org.lz4</groupId> <artifactId>lz4-java</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>raft-api</artifactId> </dependency> <!-- Testing dependencies --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <!-- TODO: remove when no longer needed --> <configuration> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>org.opendaylight.controller:raft-api</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> </plugins> </build> </project>