mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-08 09:10:11 +08:00
05f6259cb3
* Add CuiCloud tasks * Add CuiCloud workflow * Fix shadowJar * Fix `reply` function prohibition in MessageSelectBuilder * Fix doc * Update CI * Update CI * Test CI * Fix file * Increase jvm memory limitation * Add comments * Remove unnecessary experimental api use * Increase upload task timeout * Fix sha * Increase timeout * Fix github * Trigger publishing on release
27 lines
667 B
Plaintext
27 lines
667 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets.all {
|
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
|
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
|
fun ktor(id: String, version: String) = "io.ktor:ktor-$id:$version"
|
|
|
|
api("org.jsoup:jsoup:1.12.1")
|
|
|
|
api("com.google.code.gson:gson:2.8.6")
|
|
api(kotlinx("coroutines-core", "1.3.3"))
|
|
api(ktor("client-core", "1.3.2"))
|
|
api(ktor("client-cio", "1.3.2"))
|
|
api(ktor("client-json", "1.3.2"))
|
|
} |