Files
architectury-api/settings.gradle
shedaniel 731a772ab1 Updated to 23w40a
Signed-off-by: shedaniel <daniel@shedaniel.me>
2023-10-08 22:27:55 +08:00

22 lines
540 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"