Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
Frish2021 edited this page Jan 4, 2025 · 9 revisions

欢迎来到该NBT库的使用教程页面!!

该页面会简单的教你如何使用该NBT库。
但是首先你应该学会如何安装NBT库。

仓库虽然给出了jar源包,但是还是不推荐直接地jar引入,应该使用Maven,Gradle等自动构建工具

安装该NBT库过程非常简单。 Maven和Gradle的构建脚本已经在README.md里面给出了安装方法,但是我们还是要在这里说清楚。

Maven

<repositories>
    <repository>
        <id>mentha-mc</id>
        <url>https://repo.menthamc.com/repository/maven-public/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>io.github.xiefrish2021</groupId>
        <artifactId>nbt</artifactId>
        <version>最新版本</version>
    </dependency>
</dependencies>

Gradle

repositories {
    maven {
        url 'https://repo.menthamc.com/repository/maven-public/'
        name 'mentha-mc'
    }
    mavenLocal()
    mavenCentral()
}

dependencies {
    implementation group: 'io.github.xiefrish2021', name: 'nbt', version: '最新版本'
}

Gradle (Kotlin)

repositories {
    maven("https://repo.menthamc.com/repository/maven-public/")
    mavenLocal()
    mavenCentral()
}

dependencies {
    implementation("io.github.xiefrish2021:nbt:最新版本")
}

我们的NBT库不能通过Maven中央仓库直接引入,需要引入我们的第三方仓库。
最后重新加载就行了,这样我们就安装成功了。