Tags
Creators
Details
Licensed ARR
Published last year
Updated 2 weeks ago
All versions
2.0.0
Release
Jauml 2.0.03 months ago 732
Compatibility
Minecraft: Java Edition
1.21.11
Platform
Fabric
Supported environments
Client and server
Changes
- Standardized Java toolchain configuration across all supported versions.
- Added
targetJavaVersionsupport for consistent Java compilation. - Fixed NeoForge metadata generation by exposing
neoforge_version_range. - Updated
neoforge.mods.tomlfiles to use properversionRangevalues. - Added the correct NeoForge dependency declaration.
- Fixed and reordered Minecraft dependency metadata for
1.21.11. - Normalized TOML fields such as
modId,type,ordering, andside. - Updated
NeoForgePlatformHelperto useFMLEnvironment.isProduction. - Added Gradle publishing/component fixes for
26.1.2. - Set NeoForge component variants to target JVM 21.
- Added custom Gradle attributes to separate Java and resource configurations.
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:ihvBalM2:jxnz1CTe"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ihvBalM2:jxnz1CTe"
}

