build.gradle.kts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright 2019-2021 Mamoe Technologies and contributors.
  3. *
  4. * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
  5. * Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
  6. *
  7. * https://github.com/mamoe/mirai/blob/master/LICENSE
  8. */
  9. plugins {
  10. `kotlin-dsl`
  11. }
  12. repositories {
  13. mavenLocal()
  14. jcenter()
  15. }
  16. kotlin {
  17. sourceSets.all {
  18. languageSettings.useExperimentalAnnotation("kotlin.Experimental")
  19. languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
  20. }
  21. }
  22. fun version(name: String): String {
  23. val versions = project.projectDir.resolve("src/main/kotlin/Versions.kt").readText()
  24. return versions.lineSequence()
  25. .map { it.trim() }
  26. .single { it.startsWith("const val $name") }
  27. .substringAfter('"', "")
  28. .substringBefore('"', "")
  29. .also {
  30. check(it.isNotBlank())
  31. logger.debug("$name=$it")
  32. }
  33. }
  34. dependencies {
  35. fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
  36. fun ktor(id: String, version: String) = "io.ktor:ktor-$id:$version"
  37. // compileOnly(kotlin("gradle-plugin-api", "1.3.72")) // Gradle's Kotlin is 1.3.72
  38. api("com.jfrog.bintray.gradle", "gradle-bintray-plugin", version("bintray"))
  39. api("com.github.jengelman.gradle.plugins", "shadow", version("shadow"))
  40. api(gradleApi())
  41. }