Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.WanionCane:UniDict:1.10.2-1.3b'
}
dependencies {
implementation("com.github.WanionCane:UniDict:1.10.2-1.3b")
}
<dependency>
<groupId>com.github.WanionCane</groupId>
<artifactId>UniDict</artifactId>
<version>1.10.2-1.3b</version>
</dependency>
libraryDependencies += "com.github.WanionCane" % "UniDict" % "1.10.2-1.3b"
:dependencies [[com.github.WanionCane/UniDict "1.10.2-1.3b"]]
An ore unification mod for Minecraft.
Ever played modded Minecraft and noticed that there are several mods which provide copper, tin, and other metals which are all incompatible with each other? Well UniDict aims to solve this problem in a much easier and faster way then modifying multiple JEI pages of recipes!
UniDict does NOT unify ore generation!
Not only does UniDict integrate with vanilla minecraft, it also integrates with several popular Minecraft mods. Here is a complete list of integrations:
UniDict offers more than just unification, it comes with an API for mod developers and CraftTweaker integration which allows you to remove unified recipes or add new recipes utilising the unified resources. To find out more please visit our Wiki page.
Please use the repositories issue tracker and follow the issue templates!
Want to add your own integration, fix a bug or crash, or add a new feature? Just fork the repo commit your changes and open a pull request. Your pull request will be reviewed and if no problems exist it will be merged and released with the next update!