build(meta): 调整部分依赖的引入范围.

将 Aether-api 和 telegrambots-meta 的引入范围由 implementation 改为 api,
方便依赖的其他项目使用.
This commit is contained in:
LamGC 2022-07-11 23:58:22 +08:00
parent 441991b705
commit 7f7b2b8895
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -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")