|
@@ -1,5 +1,5 @@
|
|
|
-import java.util.*
|
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
+import java.util.*
|
|
|
|
|
|
|
|
plugins {
|
|
plugins {
|
|
|
kotlin("jvm")
|
|
kotlin("jvm")
|
|
@@ -23,18 +23,15 @@ kotlin {
|
|
|
}
|
|
}
|
|
|
dependencies {
|
|
dependencies {
|
|
|
compileOnly("net.mamoe:mirai-core-jvm:${Versions.Mirai.core}")
|
|
compileOnly("net.mamoe:mirai-core-jvm:${Versions.Mirai.core}")
|
|
|
- compileOnly("net.mamoe:mirai-core-qqandroid-jvm:${Versions.Mirai.core}")
|
|
|
|
|
-
|
|
|
|
|
|
|
+ compileOnly(kotlin("stdlib")) // embedded by core
|
|
|
|
|
|
|
|
- implementation("com.google.code.gson:gson:2.8.6")
|
|
|
|
|
- implementation(group = "org.yaml", name = "snakeyaml", version = "1.25")
|
|
|
|
|
- implementation(group = "com.moandjiezana.toml", name = "toml4j", version = "0.7.2")
|
|
|
|
|
- implementation(kotlin("stdlib-jdk8"))
|
|
|
|
|
|
|
+ api("com.google.code.gson:gson:2.8.6")
|
|
|
|
|
+ api(group = "org.yaml", name = "snakeyaml", version = "1.25")
|
|
|
|
|
+ api(group = "com.moandjiezana.toml", name = "toml4j", version = "0.7.2")
|
|
|
|
|
|
|
|
|
|
|
|
|
- testApi(ktor("client-cio", Versions.Kotlin.ktor))
|
|
|
|
|
- testApi(ktor("client-core", Versions.Kotlin.ktor))
|
|
|
|
|
- testApi(ktor("network", Versions.Kotlin.ktor))
|
|
|
|
|
|
|
+ testApi("net.mamoe:mirai-core-qqandroid-jvm:${Versions.Mirai.core}")
|
|
|
|
|
+ testApi(kotlin("stdlib"))
|
|
|
testApi("org.jsoup:jsoup:1.12.1")
|
|
testApi("org.jsoup:jsoup:1.12.1")
|
|
|
}
|
|
}
|
|
|
|
|
|