From 7f7b2b8895e9829daddfa3e349ec809225806294 Mon Sep 17 00:00:00 2001 From: LamGC Date: Mon, 11 Jul 2022 23:58:22 +0800 Subject: [PATCH] =?UTF-8?q?build(meta):=20=E8=B0=83=E6=95=B4=E9=83=A8?= =?UTF-8?q?=E5=88=86=E4=BE=9D=E8=B5=96=E7=9A=84=E5=BC=95=E5=85=A5=E8=8C=83?= =?UTF-8?q?=E5=9B=B4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 Aether-api 和 telegrambots-meta 的引入范围由 implementation 改为 api, 方便依赖的其他项目使用. --- scalabot-meta/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scalabot-meta/build.gradle.kts b/scalabot-meta/build.gradle.kts index 7d5b9a9..f12298c 100644 --- a/scalabot-meta/build.gradle.kts +++ b/scalabot-meta/build.gradle.kts @@ -8,12 +8,12 @@ plugins { dependencies { val aetherVersion = "1.1.0" - implementation("org.eclipse.aether:aether-api:$aetherVersion") + api("org.eclipse.aether:aether-api:$aetherVersion") implementation("org.eclipse.aether:aether-util:$aetherVersion") implementation("org.telegram:telegrambots-meta:6.0.1") - implementation("com.google.code.gson:gson:2.9.0") + api("com.google.code.gson:gson:2.9.0") testImplementation(kotlin("test")) testImplementation("io.mockk:mockk:1.12.4")