Carry On mod for Minecraft
Go to file
2025-07-26 00:39:54 +02:00
Common Updated Version Numbers 2025-07-26 00:39:54 +02:00
docs Update issue_template.md 2023-01-29 19:03:01 +01:00
Fabric Fixed Player Carrying, closes #774 2025-07-22 23:48:52 +02:00
Forge Updated Version Numbers 2025-07-26 00:39:54 +02:00
gradle/wrapper Updated to 1.21.5 2025-07-08 10:51:36 +02:00
NeoForge Fixed Player Carrying, closes #774 2025-07-22 23:48:52 +02:00
.gitattributes Started work on rewrite, using Multiloader 2022-10-03 13:43:38 +02:00
.gitignore Updated to 1.20.4, added NeoForge 2024-02-25 17:53:24 +01:00
build.gradle Updated to 1.21.4, Added support for Cloth Config 2025-01-04 00:32:09 +01:00
gradle.properties Updated Version Numbers 2025-07-26 00:39:54 +02:00
gradlew Updated to 1.20.4, added NeoForge 2024-02-25 17:53:24 +01:00
gradlew.bat Updated to 1.20.4, added NeoForge 2024-02-25 17:53:24 +01:00
Jenkinsfile updated Jenkinsfile 2024-07-09 23:50:54 +02:00
LICENSE Added final config options. Added gamestages support. Fixed rendering issues 2022-12-05 00:17:48 +01:00
README.md Update README.md 2022-12-12 11:19:20 +01:00
settings.gradle Updated to 1.21 2024-07-14 15:35:40 +02:00

Carry On

To use CarryOn in your projects, include this in your build.gradle:

repositories {
	maven {
		url "https://maven.blamejared.com/"
	}
}

dependencies {
	deobfCompile "tschipp.carryon:carryon-LOADER-MCVERSION:MODVERSION" 
}

Make sure to replace LOADER, MCVERSION and MODVERSION with the appropriate versions. One example would be tschipp.carryon:carryon-forge-1.19.2:2.0.0.5

Development

This project provides a Gradle project template that can compile mods for both Forge and Fabric using a common sourceset. This project does not require any third party libraries or dependencies.

IntelliJ IDEA

This guide will show how to import the MultiLoader Template into IntelliJ IDEA. The setup process is roughly equivalent to setting up Forge and Fabric independently and should be very familiar to anyone who has worked with their MDKs.

  1. Clone or download this repository to your computer.
  2. Open the template's root folder as a new project in IDEA. This is the folder that contains this README file and the gradlew executable.
  3. If your default JVM/JDK is not Java 17 you will encounter an error when opening the project. This error is fixed by going to File > Settings > Build, Execution, Deployment > Build Tools > Gradle > Gradle JVMand changing the value to a valid Java 17 JVM. You will also need to set the Project SDK to Java 17. This can be done by going to File > Project Structure > Project SDK. Once both have been set open the Gradle tab in IDEA and click the refresh button to reload the project.
  4. Open the Gradle tab in IDEA if it has not already been opened. Navigate to Your Project > Common > Tasks > vanilla gradle > decompile. Run this task to decompile Minecraft.
  5. Open the Gradle tab in IDEA if it has not already been opened. Navigate to Your Project > Forge > Tasks > forgegradle runs > genIntellijRuns. Run this task to set up run configurations for Forge.
  6. Open your Run/Debug Configurations. Under the Application category there should now be options to run Forge and Fabric projects. Select one of the client options and try to run it.
  7. Assuming you were able to run the game in step 7 your workspace should now be set up.

Eclipse

While it is possible to use this template in Eclipse it is not recommended. During the development of this template multiple critical bugs and quirks related to Eclipse were found at nearly every level of the required build tools. While we continue to work with these tools to report and resolve issues support for projects like these are not there yet. For now Eclipse is considered unsupported by this project. The development cycle for build tools is notoriously slow so there are no ETAs available.