omega-config icon indicating copy to clipboard operation
omega-config copied to clipboard

Minecraft 1.21 released on Github but not in Maven repository

Open brainage04 opened this issue 1 year ago • 1 comments

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. image Unless I'm looking in the wrong place, it seems it is not actually in the maven repository: image I just thought I should let someone know.

brainage04 avatar Jun 25 '24 10:06 brainage04

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

Kesuaheli avatar Mar 25 '25 08:03 Kesuaheli