mirror of
https://github.com/architectury/architectury-api.git
synced 2026-03-28 11:57:01 -05:00
23 lines
612 B
Groovy
23 lines
612 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 < 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"
|