Connectors for common java projects
- Framework for easily connecting services with connectors
- Connectors for MapDB
- Connectors for RocksDB
JDataLayer is available on Maven Central. You just have to add the following dependency in your pom.xml
file.
For RocksDB
<dependency>
<groupId>com.adtsw.jdatalayer</groupId>
<artifactId>rocksdb</artifactId>
<version>1.0.23</version>
</dependency>
For MapDB
<dependency>
<groupId>com.adtsw.jdatalayer</groupId>
<artifactId>mapdb</artifactId>
<version>1.0.23</version>
</dependency>
For snapshots, add the following repository to your pom.xml
file.
<repository>
<id>sonatype snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
The snapshot version has not been released yet.
<dependency>
<groupId>com.adtsw.jdatalayer</groupId>
<artifactId>rocksdb</artifactId>
<version>TBD</version>
</dependency>