Skip to content

playlegendold/NBTStorage

 
 

Repository files navigation

NBTStorage

NBTStorage is an API for editing all kinds of Nbt related data in Minecraft Bukkit. The original version has been developed by @RewisServer.

Maven Repository

NBTStorage is available through our Maven repository. You have to replace version with your desired values.

Gradle (Kotlin)

repositories {
    maven("https://repository.playlegend.net/artifactory/opensource/")
}

dependencies {
    compileOnly("net.playlegend:nbtstorage:VERSION")
}

Maven

<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>

Build a custom version

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/.

A quick example

WIP