Files
mirai-console-jcf-plugin/build.gradle.kts
T
jie65535 8e6af61571
Build Plugin / build (push) Has been cancelled
添加网络代理支持并更新版本到1.2.2
2026-08-08 20:13:43 +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.2"
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")
}