mirai/buildSrc/build.gradle.kts

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-11-01 15:07:32 +08:00
/*
2021-01-21 10:08:21 +08:00
* Copyright 2019-2021 Mamoe Technologies and contributors.
2020-11-01 15:07:32 +08:00
*
* 此源代码的使用受 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
}
kotlin {
sourceSets.all {
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
}
}
2021-01-21 10:08:21 +08:00
fun version(name: String): String {
val versions = project.projectDir.resolve("src/main/kotlin/Versions.kt").readText()
return versions.lineSequence()
.map { it.trim() }
.single { it.startsWith("const val $name") }
.substringAfter('"', "")
.substringBefore('"', "")
.also {
check(it.isNotBlank())
logger.debug("$name=$it")
}
}
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"
2021-01-21 10:08:21 +08:00
// compileOnly(kotlin("gradle-plugin-api", "1.3.72")) // Gradle's Kotlin is 1.3.72
api("com.jfrog.bintray.gradle", "gradle-bintray-plugin", version("bintray"))
api("com.github.jengelman.gradle.plugins", "shadow", version("shadow"))
2021-01-21 10:08:21 +08:00
api(gradleApi())
2020-03-24 10:01:03 +08:00
}