Files
architectury-api/settings.gradle
Max c12524b7aa [norelease] Switch to loom 0.9, crane and quiltflower
(I can't believe that ALL of these work out of the box)
2021-06-22 12:30:45 +02:00

23 lines
616 B
Groovy

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