Files
architectury-api/settings.gradle
shedaniel 74f7fb34cf Forge 1.20.2
Signed-off-by: shedaniel <daniel@shedaniel.me>
2023-09-26 10:49:33 +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"