2020-11-01 15:07:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019-2020 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 10:01:03 +08:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2020-05-23 15:25:37 +08:00
|
|
|
mavenLocal()
|
2020-03-24 10:01:03 +08:00
|
|
|
jcenter()
|
2020-03-25 11:47:09 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 09:52:49 +08:00
|
|
|
kotlin {
|
|
|
|
sourceSets.all {
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 11:47:09 +08:00
|
|
|
dependencies {
|
|
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
|
|
|
fun ktor(id: String, version: String) = "io.ktor:ktor-$id:$version"
|
|
|
|
|
2020-03-31 09:52:49 +08:00
|
|
|
api("org.jsoup:jsoup:1.12.1")
|
|
|
|
|
|
|
|
api("com.google.code.gson:gson:2.8.6")
|
2020-03-25 11:47:09 +08:00
|
|
|
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"))
|
2020-09-22 18:56:27 +08:00
|
|
|
compileOnly("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5")
|
|
|
|
api("com.github.jengelman.gradle.plugins:shadow:6.0.0")
|
2020-03-24 10:01:03 +08:00
|
|
|
}
|