From cfd6916c7f063913e4ab862075b1d5f1f6a1424d Mon Sep 17 00:00:00 2001 From: BalanceSea <3643203568@qq.com> Date: Wed, 23 Sep 2026 22:40:21 +0800 Subject: [PATCH] =?UTF-8?q?build(gradle):=20=E5=88=87=E6=8D=A2=20TabooLib?= =?UTF-8?q?=20=E5=AE=98=E6=96=B9=E4=BB=93=E5=BA=93=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=89=88=E6=9C=AC=E4=BB=A5=E6=94=AF=E6=8C=81=2026.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 build.gradle.kts 中注释 Aeolian Cloud 仓库地址, 将 repoTabooLib 改为官方发布源 https://repo.tabooproject.org/repository/releases, 使依赖从 TabooLib 官方仓库解析。 - 将 taboolib 版本从 6.3.0-81b01f2 调整为 6.3.0-4bf7820,与新仓库中的构建号对齐。 --- build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 22206321..2a70717b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -67,12 +67,13 @@ subprojects { XSeries, PtcObject ) - repoTabooLib = "https://repo.aeoliancloud.com/repository/releases" +// repoTabooLib = "https://repo.aeoliancloud.com/repository/releases" // repoTabooLib = project.repositories.mavenLocal().url.toString() + repoTabooLib = "https://repo.tabooproject.org/repository/releases" disableOnSkippedVersion = false } version { - taboolib = "6.3.0-81b01f2" + taboolib = "6.3.0-4bf7820" coroutines = null } }