
SimpleOreLib
This Minecraft library significantly simplifies the process of adding new ores to the game by automating their generation in the world. The mod handles all technical aspects of creating and distributing ore deposits, allowing developers to focus on the creative part of the process.
Project Setup
To connect the library to your project, add the following lines to the build.gradle file:
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/Minecraftschurli/SimpleOreLib"
credentials {
username = [GITHUB_USER]
password = [GITHUB_TOKEN]
}
}
}
dependencies {
compile fg.deobf("minecraftschurli:SimpleOreLib:[CURRENT_MC_VERSION]-[CURRENT_SIMPLE_ORE_LIB_VERSION]")
}