forked from PigeonYuze/YamlBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
31 lines (25 loc) · 962 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
plugins {
val kotlinVersion = "1.7.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.13.2"
}
mirai {
this.jvmTarget = JavaVersion.VERSION_11
}
group = "com.pigeonyuze"
version = "1.5.0"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}
dependencies{
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
//---remove implementation("org.apache.logging.log4j:log4j-core:2.17.2")
implementation("org.jetbrains.kotlin:kotlin-serialization:1.6.20")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
// https://mvnrepository.com/artifact/io.github.kasukusakura/silk-codec
implementation("io.github.kasukusakura:silk-codec:0.0.5")
implementation("net.mamoe.yamlkt:yamlkt-jvm:0.12.0") //yaml
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
}