From 3a45f6743b3ead4a7ad45d9db2da5c4a5f80048f Mon Sep 17 00:00:00 2001 From: mDiyo Date: Sun, 19 Apr 2015 19:33:56 -0800 Subject: [PATCH] Update README.txt with build info Update the readme with basic information on building new mods, as well as pointing to documentation for builds. --- install/README.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/install/README.txt b/install/README.txt index 744ba3b6e..07b9b6ed8 100644 --- a/install/README.txt +++ b/install/README.txt @@ -35,3 +35,17 @@ https://www.youtube.com/watch?v=8VEdtQLuLO0&feature=youtu.be For more details update more often refer to the Forge Forums: http://www.minecraftforge.net/forum/index.php/topic,14048.0.html + + + +------------------------------------------- + Building a new mod +------------------------------------------- +To build a mod, place your source files in src/main/java. Any related resources such as +textures or mcmod.info files should be placed in src/main/resources. Run 'gradlew build' +to create a new jar. + +An example mod has been provided. You can find any built jars in build/libs. Examine your +build.gradle to change mod name, mod ID, etc. + +Additional information can be found at https://forgegradle.readthedocs.org/en/latest/