Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 728 Bytes

File metadata and controls

32 lines (25 loc) · 728 Bytes

NBT

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

<dependencies>
    <dependency>
        <groupId>org.allaymc</groupId>
        <artifactId>nbt</artifactId>
        <version>3.0.10</version>
    </dependency>
</dependencies>

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
}

implementation("org.allaymc:nbt:3.0.10")