mirai-console-jcf-plugin/build.gradle.kts
筱傑 1ffd53cab1 更新依赖到最新版本
更新插件版本号到v1.1.0
2023-01-27 17:08:28 +08:00

22 lines
564 B
Plaintext

plugins {
val kotlinVersion = "1.7.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.13.2"
}
group = "top.jie65535.jcf"
version = "1.1.0"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}
val ktorVersion = "2.2.2"
dependencies {
// implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
}