Files
mirai-console-jcf-plugin/build.gradle.kts
T
jie65535 5657fcc01a 更新依赖到最新版本
更新插件版本号到v1.2.1
2026-08-05 20:38:23 +08:00

23 lines
556 B
Kotlin

plugins {
val kotlinVersion = "2.0.20"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.16.0"
}
group = "top.jie65535.jcf"
version = "1.2.1"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}
val ktorVersion = "3.0.3"
dependencies {
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
testImplementation(kotlin("test"))
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
}