Update to FML 9.0.14 (#2416)

This commit is contained in:
Bruno Ploumhans 2025-07-13 21:39:22 +02:00 committed by GitHub
parent 7cf02e3834
commit bde7b5906c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ nightconfig_version=3.8.2
jetbrains_annotations_version=24.0.1
apache_maven_artifact_version=3.9.9
jarjar_version=0.4.1
fancy_mod_loader_version=9.0.5
fancy_mod_loader_version=9.0.14
typetools_version=0.6.3
mixin_extras_version=0.4.1

View File

@ -102,8 +102,11 @@ dependencies {
}
moduleLibraries "net.neoforged.fancymodloader:securejarhandler:${project.fancy_mod_loader_version}"
moduleLibraries "net.neoforged.fancymodloader:bootstraplauncher:${project.fancy_mod_loader_version}"
moduleLibraries "net.neoforged:JarJarFileSystems:${project.jarjar_version}"
for (var asmModule : ["org.ow2.asm:asm", "org.ow2.asm:asm-commons", "org.ow2.asm:asm-tree", "org.ow2.asm:asm-util", "org.ow2.asm:asm-analysis"]) {
moduleLibraries(asmModule) {
libraries(asmModule) {
// Vanilla ships with ASM 9.3 transitively (via their OpenID connect library dependency), we require
// ASM in a more recent version and have to strictly require this to override the strict Minecraft version.
version {
@ -111,9 +114,6 @@ dependencies {
}
}
}
moduleLibraries "net.neoforged.fancymodloader:bootstraplauncher:${project.fancy_mod_loader_version}"
moduleLibraries "net.neoforged:JarJarFileSystems:${project.jarjar_version}"
libraries ("net.neoforged.fancymodloader:loader:${project.fancy_mod_loader_version}") {
exclude group: 'org.slf4j'
exclude group: 'net.fabricmc'