9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-25 01:49:30 +00:00

build(core): 将 boosted-yaml 依赖改为本地文件引用

- 修改了 core/build.gradle.kts 文件中的 boosted-yaml 依赖引用- 从远程库引用改为本地文件引用,以适应项目构建需求
This commit is contained in:
jhqwqmc
2025-02-11 23:49:32 +08:00
parent d79a0c4349
commit 11a9361b79

View File

@@ -13,7 +13,7 @@ dependencies {
// JOML
compileOnly("org.joml:joml:1.10.8")
// YAML
implementation("dev.dejvokep:boosted-yaml:${rootProject.properties["boosted_yaml_version"]}")
implementation(files("libs/boosted-yaml-${rootProject.properties["boosted_yaml_version"]}.jar"))
compileOnly("org.yaml:snakeyaml:${rootProject.properties["snake_yaml_version"]}")
// NBT
implementation("com.github.Xiao-MoMi:sparrow-nbt:${rootProject.properties["sparrow_nbt_version"]}")