mirror of
https://github.com/jie65535/mirai-console-jcc-plugin.git
synced 2025-06-02 17:39:14 +08:00
20 lines
429 B
Plaintext
20 lines
429 B
Plaintext
plugins {
|
|
val kotlinVersion = "1.5.10"
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("plugin.serialization") version kotlinVersion
|
|
|
|
id("net.mamoe.mirai-console") version "2.6.7"
|
|
}
|
|
|
|
group = "me.jie65535"
|
|
version = "0.1"
|
|
|
|
repositories {
|
|
maven("https://maven.aliyun.com/repository/public")
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies{
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
|
implementation("com.beust:klaxon:5.5")
|
|
} |