NBTStorage is an API for editing all kinds of Nbt related data in Minecraft Bukkit. The original version has been developed by @RewisServer.
NBTStorage is available through our Maven repository. You have to replace version with your desired values.
repositories {
maven("https://repository.playlegend.net/artifactory/opensource/")
}
dependencies {
compileOnly("net.playlegend:nbtstorage:VERSION")
}
<repositories>
<!-- This adds the Legend Maven repository to the build -->
<repository>
<id>legend-repo</id>
<url>https://repository.playlegend.net/artifactory/opensource</url>
</repository>
</repositories>
<dependency>
<groupId>net.playlegend</groupId>
<artifactId>nbtstorage</artifactId>
<version>VERSION</version>
</dependency>
To build your own version of NBTStorage just execute the following command in project root.
./gradlew shadowJar
You can find your artifacts in /build/libs/
.
WIP