RimeLib
Utility library for my Minecraft modifications. This mod itself doesn't perform any practical actions in the game, but serves as a convenient toolset for other mods, providing them with ready-made solutions for implementing various functions.
The versioning system uses the format: major.minor.hotfix:
- Major version is incremented at my discretion
- Minor version is changed when backward compatibility breaking changes are introduced
- Hotfix version is updated when new functionality or minor improvements are added
Usage in Development
To connect the library to your mod, you need to add the repository:
maven("https://ancientri.me/maven/releases") {
name = "AncientRime"
}
And specify the dependency:
modImplementation("me.ancientri:rimelib:$mod_version")
You can also add the library directly to the build via include(), so users don't have to download it separately, since the file size is small.