1.0.5
Compatibility
Changes
Relics & Artifacts 1.0.5 — Forge support update
Added
- Added Forge support for Minecraft 1.21.1 using Forge 52.1.16.
- Added Forge support for Minecraft 1.21.11 using Forge 61.2.1.
- Added Forge support for the Minecraft 26.1.x family, built against Minecraft 26.1.2 and Forge 64.1.3.
- Added Forge support for Minecraft 26.2 using Forge 65.1.3.
Compatibility work
- Ported mod registration to the Forge registry system.
- Added compatibility with both the legacy and current Forge event-bus APIs.
- Updated item, block, player-tick, login/logout, fall, and living-drop event handling.
- Updated Minecraft resource identifiers, item properties, block properties, respawn handling, and dimension identifiers where required.
- Kept version-specific resources and data packs for each Minecraft release line.
Validation
- All four available Forge targets compile successfully from source.
- Each build starts a dedicated server and creates a new world successfully.
- No mod data-pack, recipe, advancement, registry, or structure parsing failures were found during the tests.
Forge 26.3 status
MinecraftForge has not published an official Forge 26.3 artifact yet. A genuine Forge 26.3 JAR cannot be compiled or tested until that dependency is released. A status marker has been added to the source archive so the target is not confused with a completed build.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:Ny4hiPCS:fFMwhDhm"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Ny4hiPCS:fFMwhDhm"
}

