2020-11-01 15:07:32 +08:00
|
|
|
/*
|
2022-02-12 20:45:09 +08:00
|
|
|
* Copyright 2019-2022 Mamoe Technologies and contributors.
|
2020-11-01 15:07:32 +08:00
|
|
|
*
|
2022-02-12 20:45:09 +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.
|
2020-11-01 15:07:32 +08:00
|
|
|
*
|
2022-02-12 20:45:09 +08:00
|
|
|
* https://github.com/mamoe/mirai/blob/dev/LICENSE
|
2020-11-01 15:07:32 +08:00
|
|
|
*/
|
|
|
|
|
2020-03-24 10:01:03 +08:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2020-05-23 15:25:37 +08:00
|
|
|
mavenLocal()
|
2021-02-01 12:23:04 +08:00
|
|
|
google()
|
|
|
|
mavenCentral()
|
2021-08-27 16:36:50 +08:00
|
|
|
gradlePluginPortal()
|
2022-09-20 18:45:20 +08:00
|
|
|
maven("https://repo.mirai.mamoe.net/keep") // for modified shadow plugin
|
2020-03-25 11:47:09 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 09:52:49 +08:00
|
|
|
kotlin {
|
|
|
|
sourceSets.all {
|
2022-04-17 21:18:58 +08:00
|
|
|
languageSettings.optIn("kotlin.Experimental")
|
|
|
|
languageSettings.optIn("kotlin.RequiresOptIn")
|
2022-11-03 03:28:04 +08:00
|
|
|
languageSettings.optIn("kotlin.ExperimentalStdlibApi")
|
2020-03-31 09:52:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-21 10:08:21 +08:00
|
|
|
|
2021-09-01 13:47:02 +08:00
|
|
|
private val versionsText = project.projectDir.resolve("src/main/kotlin/Versions.kt").readText()
|
2021-01-21 10:08:21 +08:00
|
|
|
fun version(name: String): String {
|
|
|
|
|
2021-09-01 13:47:02 +08:00
|
|
|
return versionsText.lineSequence()
|
2021-01-21 10:08:21 +08:00
|
|
|
.map { it.trim() }
|
2022-02-12 20:45:09 +08:00
|
|
|
.single { it.startsWith("const val $name ") }
|
2021-01-21 10:08:21 +08:00
|
|
|
.substringAfter('"', "")
|
|
|
|
.substringBefore('"', "")
|
|
|
|
.also {
|
|
|
|
check(it.isNotBlank())
|
|
|
|
logger.debug("$name=$it")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 11:47:09 +08:00
|
|
|
dependencies {
|
2021-02-25 00:12:58 +08:00
|
|
|
val asmVersion = version("asm")
|
|
|
|
fun asm(module: String) = "org.ow2.asm:asm-$module:$asmVersion"
|
|
|
|
|
2020-03-25 11:47:09 +08:00
|
|
|
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
|
|
|
|
|
2022-09-20 18:45:20 +08:00
|
|
|
// api("com.github.jengelman.gradle.plugins", "shadow", version("shadow"))
|
|
|
|
api("com.github.johnrengelman", "shadow", version("shadow"))
|
|
|
|
|
2021-02-01 12:23:04 +08:00
|
|
|
api("org.jetbrains.kotlin", "kotlin-gradle-plugin", version("kotlinCompiler"))
|
2021-11-18 11:05:50 +08:00
|
|
|
// api("org.jetbrains.kotlin", "kotlin-compiler-embeddable", version("kotlinCompiler"))
|
|
|
|
// api(ktor("client-okhttp", "1.4.3"))
|
2021-02-01 12:23:04 +08:00
|
|
|
api("com.android.tools.build", "gradle", version("androidGradlePlugin"))
|
2021-02-25 00:12:58 +08:00
|
|
|
api(asm("tree"))
|
|
|
|
api(asm("util"))
|
|
|
|
api(asm("commons"))
|
2022-06-26 16:03:15 +08:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
|
2020-03-31 09:52:49 +08:00
|
|
|
|
2022-05-29 06:03:13 +08:00
|
|
|
api("gradle.plugin.com.google.gradle:osdetector-gradle-plugin:1.7.0")
|
|
|
|
|
2021-01-21 10:08:21 +08:00
|
|
|
api(gradleApi())
|
2020-03-24 10:01:03 +08:00
|
|
|
}
|