This project is a fork of https://github.com/pcmind/leveldb aiming to implement the changes made in https://github.com/Mojang/leveldb-mcpe/ where relevant to allow the library to read MCPE.
For more information see the original repository on use cases / API usage.
Requirements
- Git
- Java 11 or higher
- Maven
Steps
- Clone this repository via
git clone git://github.com/HiveGamesOSS/leveldb-mcpe-java.git
. - Build the project via
mvn clean install
. - Obtain the library from
target/
folder.
You can use the following in your maven pom.xml:
<dependency>
<groupId>com.hivemc.leveldb</groupId>
<artifactId>leveldb</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.hivemc.leveldb</groupId>
<artifactId>leveldb-api</artifactId>
<version>1.0.0</version>
</dependency>
This library is aimed as a drop in replacement to the original fork https://github.com/pcmind/leveldb.
Details of the LICENSE can be found in the license.txt, this fork maintains the original license for all code and modifications.