mirror of
https://github.com/jie65535/mirai-console-jhr-plugin.git
synced 2025-06-02 17:39:16 +08:00
17 lines
377 B
Plaintext
17 lines
377 B
Plaintext
plugins {
|
|
val kotlinVersion = "1.5.30"
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.serialization") version kotlinVersion
|
|
|
|
id("net.mamoe.mirai-console") version "2.10.1"
|
|
}
|
|
|
|
group = "top.jie65535"
|
|
version = "0.2.0"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven("https://maven.aliyun.com/repository/public") // 阿里云国内代理仓库
|
|
mavenCentral()
|
|
}
|