-
Notifications
You must be signed in to change notification settings - Fork 8
Home
To begin using the mod, add our maven in your repositories
repositories {
maven { url = "https://maven.liukrast.net/" }
}then proceed to add the mod in your dependencies
dependencies {
implementation("net.liukrast:extra_gauges-${minecraft_version}:${extra_gauges_version}")
}Extra gauges will soon not be an API anymore, but will be relying on another library mod for common create addon development utils which I'm developing with the team. Please specify in your mods that use or have compatibility with extra gauges that versions above and included 2.1.0 will not be supported. Do not worry, you won't need to do extra coding, but class names and packages might change. A full list of all changes will be provided to help reducing work on this process. To specify the incompatibility with 2.1.0+, you can simply use Maven version range. For this case, it will be: [firstVersionSupported,2.1.0) or [,2.1.0). Thanks for understanding ;)