settings.gradle.kts 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * This file was generated by the Gradle 'init' task.
  3. *
  4. * The settings file is used to specify which projects to include in your build.
  5. *
  6. * Detailed information about configuring a multi-project build in Gradle can be found
  7. * in the user guide at https://docs.gradle.org/4.9/userguide/multi_project_builds.html
  8. */
  9. rootProject.name = "mcMMO"
  10. include(
  11. // Core abstraction layer of mcMMO
  12. "core",
  13. // Bukkit/Spigot versions, core bukkit has plugin class
  14. "bukkit",
  15. "bukkit:1_13",
  16. "bukkit:1_12",
  17. "bukkit:1_8_8",
  18. // Sponge Projects - SpongeAPI follows semver, so API versions can change
  19. "sponge", // Generic plugin class contains references to load specific listeners and registrations between APIs.
  20. "sponge:api7" // API 7 is special for MC 1.12.2
  21. )
  22. pluginManagement {
  23. repositories {
  24. jcenter()
  25. maven("https://repo.spongepowered.org/maven/")
  26. maven("https://files.minecraftforge.net/maven/")
  27. gradlePluginPortal()
  28. }
  29. }