mirror of
https://github.com/jie65535/mirai-console-jms-plugin.git
synced 2025-06-02 17:39:17 +08:00
22 lines
513 B
Plaintext
22 lines
513 B
Plaintext
plugins {
|
|
val kotlinVersion = "1.8.10"
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.serialization") version kotlinVersion
|
|
|
|
id("net.mamoe.mirai-console") version "2.16.0"
|
|
}
|
|
|
|
group = "top.jie65535.mirai"
|
|
version = "1.1.1"
|
|
|
|
repositories {
|
|
maven("https://maven.aliyun.com/repository/public")
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
val ktorVersion = "2.3.8"
|
|
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
|
|
implementation("io.ktor:ktor-client-okhttp-jvm:$ktorVersion")
|
|
} |