Remove nbt module

This commit is contained in:
2026-09-04 16:58:48 +08:00
parent 5e4f877a4a
commit bfe1090574
4 files changed
+1 -43

No files matched your search

+1 -1
View File
@@ -4,4 +4,4 @@ kotlin.native.enableKlibsCrossCompilation=true
kotlin.daemon.jvmargs=-Xmx2048M kotlin.daemon.jvmargs=-Xmx2048M
org.gradle.jvmargs=-Xmx3g -Dfile.encoding=UTF-8 org.gradle.jvmargs=-Xmx3g -Dfile.encoding=UTF-8
libVersion=0.0.3 libVersion=0.1.0
-32
View File
@@ -1,32 +0,0 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
repositories {
maven("https://repo.rtast.cn/packages/")
}
kotlin {
explicitApi()
linuxX64()
linuxArm64()
macosArm64()
mingwX64()
iosArm64()
iosSimulatorArm64()
jvm { compilerOptions.jvmTarget = JvmTarget.JVM_1_8 }
sourceSets {
commonMain.dependencies {
implementation(project(":common"))
}
jvmMain.dependencies {
}
commonTest.dependencies {
implementation(kotlin("test"))
implementation(libs.kotlinx.coroutines.test)
}
}
}
@@ -1,9 +0,0 @@
/*
* Copyright © 2026 RTAkland
* Author: RTAkland
* Date: 2026/9/4
*/
package cn.rtast.libmc.anvil
-1
View File
@@ -6,7 +6,6 @@ rootProject.name = "libmc"
includeSubModule(":common") includeSubModule(":common")
includeSubModule(":mcping") includeSubModule(":mcping")
includeSubModule(":rconlib") includeSubModule(":rconlib")
includeSubModule(":nbt")
fun includeSubModule(name: String) = include(name).also { fun includeSubModule(name: String) = include(name).also {
project(name).projectDir = file("libmc-${name.removePrefix(":")}") project(name).projectDir = file("libmc-${name.removePrefix(":")}")