Tags
Creators
Details
Licensed ARR
Published last year
All versions
2.1.0
Release
Jauml 2.1.03 weeks ago 96
Compatibility
Minecraft: Java Edition
26.2
Platform
NeoForge
Supported environments
Client and server
Changes
Added
JsonLib: Modern JSON utility class providing:safeParsefor exception-free parsing.strictParseto enforce standard RFC 8259 compliance.stableStringifyfor key-sorted deterministic JSON serialization.deepClonefor clean nested JSON copies.getByPathandsetByPathfor dot-bracket path navigation (e.g.settings.users[0].name).mergeto recursively combine configuration layers.normalizeto apply type coercion and default templates to user configurations.detectVersionfor finding schema version tags.
JsonSchema: Embedded lightweight JSON Schema validator supporting type checks, required keys constraint, object property validation, and array item schema checking.JsonMigrator: Sequence-based directed BFS path-finding migrator for sequential version upgrades.JsonException: Unified, typed exception class for all library errors.JaumlInitializer: Mod-level startup checker verifying configuration health, executing migrations, and performing library/app compatibility checks.- JUnit 5 Test Framework: Shared test suite inside
common-sharedrunning tests natively across all supported Minecraft versions. - Launch Verification script: PowerShell runner
verify_launch.ps1to clean, compile, run tests, and package mod jars automatically.
Changed
ConfigFile: Enhanced in-place with:- Graceful recovery of corrupted config files (backs up corrupted configs to
.json.bakand re-creates clean configs from default templates). - Implicit type coercion and template normalization during loads.
- Schema validation check support.
- Auto-migrations before initialization.
- Graceful recovery of corrupted config files (backs up corrupted configs to
JaumlConfig: Added overloadedopenmethods supporting schemas, migrators, and default templates. Added runtime checks (LIBRARY_VERSIONandisCompatible).
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:WMEjVEsJ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ihvBalM2:WMEjVEsJ"
}

