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.liachmodded:UHC-Reloaded:0.0.1'
}
dependencies {
implementation("com.github.liachmodded:UHC-Reloaded:0.0.1")
}
<dependency>
<groupId>com.github.liachmodded</groupId>
<artifactId>UHC-Reloaded</artifactId>
<version>0.0.1</version>
</dependency>
libraryDependencies += "com.github.liachmodded" % "UHC-Reloaded" % "0.0.1"
:dependencies [[com.github.liachmodded/UHC-Reloaded "0.0.1"]]
This is a Minecraft mod with the purpose to make UltraHardcore-Mode Forge-compatible in 1.8
Basically, this mod is trying following UHC rules from here: http://www.reddit.com/r/ultrahardcore/wiki/playerfaq
The idea of this mod has various origin, including but not limited in:
http://dev.bukkit.org/bukkit-plugins/ultrahardcore/
http://dev.bukkit.org/bukkit-plugins/ultra-hardcore/
http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1281162-1-4-5-xxxhardcorexxx-mod
(Currently it is an unfinished list.)
Although there is cauldron, a Forge version still seems necessary.
#About the mod itself As the author, I have to say I am an amateur, so there is still a long way for me to go.
While I was coding, I might use other's code as reference. I tried to give credit which I think as necessary, but there may be some missing. If there is missing, please remind me.
I am willing to accept suggestions and bug-reports which are helpful for this mod.
(Actually I don't know what I should say here)
Feel free to contribute, as long as you believe that your code better than mine.
For contributer list, see [this] (https://github.com/3TUSK/UHC-Reload/graphs/contributors)
I Appreciate everyone in that list!