build.gradle.kts 654 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright 2019-2023 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/dev/LICENSE
  8. */
  9. plugins {
  10. kotlin("jvm") version "1.8.10"
  11. kotlin("plugin.serialization") version "1.8.10"
  12. id("net.mamoe.mirai-console") version "2.99.0-local"
  13. java
  14. }
  15. group = "org.example"
  16. version = "1.0-SNAPSHOT"
  17. dependencies {
  18. }
  19. repositories {
  20. mavenCentral()
  21. mavenLocal()
  22. }