omega-config
omega-config copied to clipboard
Minecraft 1.21 released on Github but not in Maven repository
I've been looking for a config library and I noticed that the latest release (https://github.com/Draylar/omega-config/releases/tag/1.4.4-1.21) of this config library supports 1.21, which is what I need. However, when I try to retrieve this version from the maven repository (I tried 1.4.4+1.21 and 1.4.4-1.21), it does not exist.
Unless I'm looking in the wrong place, it seems it is not actually in the maven repository:
I just thought I should let someone know.
You can use the direct GitHub download with the jitpack repository:
maven { url = "https://jitpack.io" }
And in your dependencies, use this:
modImplementation include("com.github.draylar:omega-config:${project.omega_config_version}")
Then, you can use the release tag (or even directly commit hashes, I believe) as your version:
omega_config_version=1.4.4-1.21