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.Ted80-Minecraft-Mods:Realistic-World-Gen:'
}
dependencies {
implementation("com.github.Ted80-Minecraft-Mods:Realistic-World-Gen:")
}
<dependency>
<groupId>com.github.Ted80-Minecraft-Mods</groupId>
<artifactId>Realistic-World-Gen</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.Ted80-Minecraft-Mods" % "Realistic-World-Gen" % ""
:dependencies [[com.github.Ted80-Minecraft-Mods/Realistic-World-Gen ""]]
http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1281910-teds-world-gen-mods-realistic-world-gen-alpha-1-3
Version Alpha 1.3 '03-01-2015'
- Added rivers
- Fixed animals spawing in deserts
- Fixed ore gen events
Version Alpha 1.2.02 '31-12-2014'
- Fixed decorate event bugs
Version Alpha 1.2.01 '30-12-2014'
- Added populate and decorate events
Version Alpha 1.2 '30-12-2014'
- Added biomes 'o plenty support
- Enabled all biomes
- Added new biomes
- Changed biome names
- Fixed rain in warm biomes
- Fixed some grass color issues in biomes transitions
- Added vanilla bedrock spawning
- Added new events for compatibility
- Fixed biome transitions in canyon and mesa biomes
Version Alpha 1.1 '15-10-2014'
- Added new biome placement system
- Improved biome dictionary
- Added redwood test biome