mirror of
https://github.com/jie65535/mirai-console-jnr-plugin.git
synced 2025-06-02 17:49:11 +08:00
更新项目依赖 修改包名 功能更新: - 现在戳一戳后会从随机列表中根据权重随机抽取一条消息进行回复 #4 - 现在允许添加多条回复消息,并允许设置消息权重 - 现在允许删除指定索引的回复消息 - 现在允许请空回复消息列表 - 现在允许查看回复消息列表
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
plugins {
|
|
val kotlinVersion = "1.6.0"
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.serialization") version kotlinVersion
|
|
|
|
id("net.mamoe.mirai-console") version "2.10.1"
|
|
}
|
|
|
|
group = "top.jie65535"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven("https://maven.aliyun.com/repository/public")
|
|
mavenCentral()
|
|
}
|