Files
architectury-api/settings.gradle
shedaniel 7b65d8da73 Update to 24w09a
Signed-off-by: shedaniel <daniel@shedaniel.me>
2024-03-01 05:26:50 +09:00

25 lines
620 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("minecraftforge")
//include("neoforge")
include("testmod-common")
include("testmod-fabric")
//include("testmod-forge")
//include("testmod-neoforge")
rootProject.name = "architectury"