mirai-console-jnr-plugin/build.gradle.kts
筱傑 f60cb05eb5 更新到1.4
修复了序列化格式问题
修改了特殊动作带回复逻辑
取消了禁言格式化时长逻辑
修改了语音消息回复逻辑
2023-04-03 23:09:07 +08:00

23 lines
516 B
Plaintext

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