settings.gradle.kts 976 B

12345678910111213141516171819202122232425262728293031
  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. pluginManagement {
  10. repositories {
  11. mavenLocal()
  12. gradlePluginPortal()
  13. mavenCentral()
  14. jcenter()
  15. google()
  16. maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
  17. maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
  18. maven(url = "https://dl.bintray.com/jetbrains/kotlin-native-dependencies")
  19. maven(url = "https://kotlin.bintray.com/kotlinx")
  20. }
  21. }
  22. rootProject.name = "mirai"
  23. include(":mirai-core-utils")
  24. include(":mirai-core-api")
  25. include(":mirai-core")
  26. include(":mirai-core-all")
  27. include(":binary-compatibility-validator")