Port WorldHandler to Minecraft 1.21.1 on NeoForge 21.1.225. This migrates the build from ForgeGradle to NeoForge ModDevGradle, updates mod metadata, replaces Forge API usage with NeoForge equivalents, updates registry access for 1.21.1, and avoids a client-startup advancement reload that can hang large modpacks. Validated with compileJava and full Gradle build.
16 lines
265 B
Groovy
16 lines
265 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = 'NeoForge'
|
|
url = 'https://maven.neoforged.net/releases'
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
|
|
rootProject.name = 'WorldHandler'
|