2021-05-25 12:13:43 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019-2021 Mamoe Technologies and contributors.
|
|
|
|
*
|
|
|
|
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
|
|
|
|
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
|
|
|
|
*
|
|
|
|
* https://github.com/mamoe/mirai/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
2020-03-24 18:02:19 +08:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2020-06-20 22:55:07 +08:00
|
|
|
mavenLocal()
|
2020-03-24 18:02:19 +08:00
|
|
|
jcenter()
|
2020-06-20 22:55:07 +08:00
|
|
|
mavenCentral()
|
2020-04-02 22:08:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets.all {
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
2020-08-19 23:09:40 +08:00
|
|
|
fun ktor(id: String, version: String = "1.3.2") = "io.ktor:ktor-$id:$version"
|
2020-04-02 22:08:58 +08:00
|
|
|
|
|
|
|
api("org.jsoup:jsoup:1.12.1")
|
|
|
|
|
|
|
|
api("com.google.code.gson:gson:2.8.6")
|
2020-08-19 23:09:40 +08:00
|
|
|
api(kotlinx("coroutines-core", "1.3.8"))
|
|
|
|
|
|
|
|
api(ktor("client-core"))
|
|
|
|
api(ktor("client-cio"))
|
|
|
|
api(ktor("client-json"))
|
2020-06-20 22:55:07 +08:00
|
|
|
|
2020-06-28 11:45:21 +08:00
|
|
|
compileOnly(gradleApi())
|
2020-08-19 21:03:34 +08:00
|
|
|
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0")
|
2020-06-20 22:55:07 +08:00
|
|
|
api("com.github.jengelman.gradle.plugins:shadow:6.0.0")
|
2020-03-24 18:02:19 +08:00
|
|
|
}
|