Despical / NBTAPI

NBT library to allow modification of NBT tags across different versions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NBT API

A NBT library to allow the modification of NBT tags across different Minecraft servers. Currently supported are 1.8 up to 1.18.

Using NBT API

The project isn't in the Central Repository yet, so specifying a repository is needed.
To add this project as a dependency to your project, add the following to your pom.xml:

Maven dependency

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.Despical</groupId>
    <artifactId>NBTAPI</artifactId>
    <version>1.0.1</version>
    <scope>compile</scope>
</dependency>

Gradle dependency

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compileOnly group: "com.github.Despical", name: "NBTAPI", version: "1.0.1";
}

About

NBT library to allow modification of NBT tags across different versions.

License:GNU General Public License v3.0


Languages

Language:Java 100.0%