mirror of
https://github.com/architectury/architectury-api.git
synced 2026-03-28 03:56:59 -05:00
* 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>
25 lines
616 B
Groovy
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"
|