key-value-store
A generic key-value store API.
Requirements
- Compatible with Java 8+
Installation
The library is available on Maven Central.
Maven
Add the following to your pom.xml
:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
...
<dependency>
<groupId>com.arakelian</groupId>
<artifactId>key-value-store</artifactId>
<version>2.7.0</version>
<scope>compile</scope>
</dependency>
Gradle
Add the following to your build.gradle
:
repositories {
mavenCentral()
}
dependencies {
compile 'com.arakelian:key-value-store:2.7.0'
}
Licence
Apache Version 2.0