Files
architectury-api/settings.gradle
Jab125 3f0bf226c4 Port to 1.20.5 (#493)
* port to 1.20.5-rc1

* port to 1.20.5

* remove runtime mod menu

* Update build.gradle

* Prepare for publishing

Signed-off-by: shedaniel <daniel@shedaniel.me>

* Update shadow plugin to fix building J21 binaries

Signed-off-by: shedaniel <daniel@shedaniel.me>

---------

Signed-off-by: shedaniel <daniel@shedaniel.me>
Co-authored-by: shedaniel <daniel@shedaniel.me>
2024-04-24 22:57:28 +09:00

25 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/" }
gradlePluginPortal()
}
}
if (JavaVersion.current().ordinal() + 1 < 21) {
throw new IllegalStateException("Please run gradle with Java 21+!")
}
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"