playlegendold / NBTStorage

Use NBTStorage for editing all kinds of NBT related data

Home Page:https://repository.playlegend.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Use NBTStorage for editing all kinds of NBT related data

https://repository.playlegend.net/

License:GNU General Public License v3.0


Languages

Language:Java 88.3%Language:Kotlin 8.1%Language:Shell 3.5%