mirror of
https://github.com/jie65535/mirai-console-j24-plugin.git
synced 2025-06-01 17:29:15 +08:00
19 lines
427 B
Plaintext
19 lines
427 B
Plaintext
plugins {
|
|
val kotlinVersion = "1.7.0"
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.serialization") version kotlinVersion
|
|
|
|
id("net.mamoe.mirai-console") version "2.12.0"
|
|
}
|
|
|
|
group = "top.jie65535"
|
|
version = "0.1.3"
|
|
|
|
repositories {
|
|
maven("https://maven.aliyun.com/repository/public") // 阿里云国内代理仓库
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.objecthunter:exp4j:0.4.8")
|
|
} |