Initial commit

This commit is contained in:
筱傑
2021-08-01 14:53:18 +08:00
commit f167c99525
14 changed files with 893 additions and 0 deletions

20
build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
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")
}