Tags
Creators
Details
Licensed MIT
Published last year
Updated 11 months ago
All versions
2.1.0
Release
Simple Resources 2.1.0last year 74
Compatibility
Minecraft: Java Edition
1.21.4
Platform
Fabric
Supported environments
Client-side
Server-side
Required content
Changes
- Extra formats registered with registerDynamicOps() can now be used for minecraft resources
- ClassFieldsCodec now allows null values
- ResourceReadWriter now includes WrapperLookup, ops are wrapped with registry ops if loading from a datapack/resourcepack context
- registerDynamicOps now takes OpsReader and OpsWriter instead of a Function and BiConsumer this allows you to reference methods which have an exception in their signature
- Changed a bunch of catch(Exception) to catch(Throwable) to make sure all problems get caught and do not cause problems somewhere else
- Changed the mod id from simleresources to simple-resources
Supplementary resources
| File | Type | Size | |
|---|---|---|---|
| SimpleResources-2.1.0-sources.jar | Unknown | 41.12 KiB |
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:idl3Q99Y:3T704rb6"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:idl3Q99Y:3T704rb6"
}

