datakernel-crdt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>datakernel-crdt</artifactId>
<version>3.1.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.datakernel</groupId>
<artifactId>datakernel</artifactId>
<version>3.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>datakernel-crdt</artifactId>
<name>DataKernel : CRDT</name>
<description>
Conflict-free replicated data type implementation for DataKernel Framework.
</description>
<dependencies>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>datakernel-datastream</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>datakernel-fs</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>datakernel-jmxapi</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.datakernel</groupId>
<artifactId>datakernel-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.datakernel.crdt</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>