Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 836 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 836 Bytes

NBT


NBT library used by Allay which is originally forked from https://github.com/CloudburstMC/NBT

This fork has the following extra features:

  • MutableNbtMap
  • SNBT support
  • Convenient conversion between record and NBT by using @nbt annotation

Dependency

Maven

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.AllayMC</groupId>
        <artifactId>NBT</artifactId>
        <version>3.0.10</version>
    </dependency>
</dependencies>

Gradle (Kotlin DSL)

repositories {
    maven { url = uri("https://jitpack.io") }
}

implementation("com.github.AllayMC:NBT:3.0.10")