settings.gradle 536 B

123456789101112131415161718192021
  1. pluginManagement {
  2. repositories {
  3. maven { url "https://maven.fabricmc.net/" }
  4. maven { url "https://maven.architectury.dev/" }
  5. maven { url "https://files.minecraftforge.net/maven/" }
  6. gradlePluginPortal()
  7. }
  8. }
  9. if (JavaVersion.current().ordinal() + 1 < 16) {
  10. throw new IllegalStateException("Please run gradle with Java 16+!")
  11. }
  12. include("common")
  13. include("fabric")
  14. include("forge")
  15. include("testmod-common")
  16. include("testmod-fabric")
  17. include("testmod-forge")
  18. rootProject.name = "architectury"