diff --git a/gradle.properties b/gradle.properties index 9aa8522..03ecb79 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,4 @@ kotlin.native.enableKlibsCrossCompilation=true kotlin.daemon.jvmargs=-Xmx2048M org.gradle.jvmargs=-Xmx3g -Dfile.encoding=UTF-8 -libVersion=0.0.3 \ No newline at end of file +libVersion=0.1.0 \ No newline at end of file diff --git a/libmc-nbt/build.gradle.kts b/libmc-nbt/build.gradle.kts deleted file mode 100644 index c154c51..0000000 --- a/libmc-nbt/build.gradle.kts +++ /dev/null @@ -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) - } - } -} \ No newline at end of file diff --git a/libmc-nbt/src/commonMain/kotlin/cn/rtast/libmc/anvil/anvil.kt b/libmc-nbt/src/commonMain/kotlin/cn/rtast/libmc/anvil/anvil.kt deleted file mode 100644 index 214d011..0000000 --- a/libmc-nbt/src/commonMain/kotlin/cn/rtast/libmc/anvil/anvil.kt +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Copyright © 2026 RTAkland - * Author: RTAkland - * Date: 2026/9/4 - */ - - -package cn.rtast.libmc.anvil - diff --git a/settings.gradle.kts b/settings.gradle.kts index 6517e83..8062980 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -6,7 +6,6 @@ rootProject.name = "libmc" includeSubModule(":common") includeSubModule(":mcping") includeSubModule(":rconlib") -includeSubModule(":nbt") fun includeSubModule(name: String) = include(name).also { project(name).projectDir = file("libmc-${name.removePrefix(":")}")