mirror of
https://github.com/mamoe/mirai.git
synced 2025-03-23 13:50:12 +08:00
46 lines
1.2 KiB
Kotlin
46 lines
1.2 KiB
Kotlin
/*
|
|
* Copyright 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
|
|
*/
|
|
|
|
object Versions {
|
|
object Mirai {
|
|
const val version = "1.1.0"
|
|
}
|
|
|
|
object Kotlin {
|
|
const val compiler = "1.4-M3"
|
|
const val stdlib = "1.3.72"
|
|
const val coroutines = "1.3.7"
|
|
const val atomicFU = "0.14.2"
|
|
const val serialization = "0.20.0"
|
|
const val ktor = "1.3.2"
|
|
const val binaryValidator = "0.2.3"
|
|
|
|
const val io = "0.1.16"
|
|
const val coroutinesIo = "0.1.16"
|
|
const val dokka = "0.10.1"
|
|
}
|
|
|
|
const val jcekt = "1.0.0"
|
|
|
|
object Android {
|
|
const val androidGradlePlugin = "3.5.3"
|
|
}
|
|
|
|
object Publishing {
|
|
const val bintray = "1.8.5"
|
|
}
|
|
|
|
}
|
|
|
|
@Suppress("unused")
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
|
|
|
@Suppress("unused")
|
|
fun ktor(id: String, version: String = Versions.Kotlin.ktor) = "io.ktor:ktor-$id:$version"
|