Files
architectury-api/settings.gradle
shedaniel f720e14cc7 LexForge 1.20.2
Signed-off-by: shedaniel <daniel@shedaniel.me>
2023-09-22 22:37:31 +08:00

22 lines
536 B
Groovy

pluginManagement {
repositories {
maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.architectury.dev/" }
maven { url "https://files.minecraftforge.net/maven/" }
gradlePluginPortal()
}
}
if (JavaVersion.current().ordinal() + 1 < 17) {
throw new IllegalStateException("Please run gradle with Java 17+!")
}
include("common")
include("fabric")
include("forge")
include("testmod-common")
include("testmod-fabric")
include("testmod-forge")
rootProject.name = "architectury"