Installation

Build Configuration

You can find the Eclipse Data Grid libraries in our Maven repository.

Maven [pom.xml]
<repositories>
	<repository>
		<id>microstream-maven-ee</id>
		<url>https://repo.microstream.one/repository/ms-ee/</url>
	</repository>
</repositories>

Modules

These are the different modules that make up Eclipse Data Grid.

ArtifactId Description

storage-distributed

Storage replication feature

storage-distributed-kafka

Kafka adapter for the storage replication

cluster-nodelibrary

Storage replication node base

cluster-nodelibrary-micronaut

Micronaut adapter for the node library

cluster-nodelibrary-helidon

Helidon adapter for the node library

cluster-nodelibrary-springboot

Spring-Boot adapter for the node library

Example Maven Dependency
<dependencies>
	<dependency>
		<groupId>org.eclipse.datagrid</groupId>
		<artifactId>cluster-nodelibrary-micronaut</artifactId>
		<version>${org.eclipse.datagrid.version}</version>
	</dependency>
</dependencies>