Line 6: |
Line 6: |
| {{Tree list}} | | {{Tree list}} |
| * '''The Mod Development Kit''' | | * '''The Mod Development Kit''' |
− | ** <code>gradle/wrapper/</code> - The folder containing the [https://docs.gradle.org/6.9/userguide/gradle_wrapper.html Gradle wrapper]'', Forge uses Gradle '''6.9''''' | + | ** <code>gradle/wrapper/</code> - The folder containing the [https://docs.gradle.org/7.1.1/userguide/gradle_wrapper.html Gradle wrapper]'', Forge uses a Snapshot Version of Gradle '''7.2''''' |
| ** <code>src</code> - The sources folder | | ** <code>src</code> - The sources folder |
| *** <code>main</code> - The <code>main</code> source set | | *** <code>main</code> - The <code>main</code> source set |
Line 12: |
Line 12: |
| ***** ... | | ***** ... |
| **** <code>resources</code> - The resources for the <code>main</code> source set | | **** <code>resources</code> - The resources for the <code>main</code> source set |
− | ***** <code>META-INF</code> - The folder for '''metadata inf'''ormation files<ref>[https://stackoverflow.com/a/6075320/14416954 StackOverflow answer]: ''... Basically, if it was stored in META-INF, it was Meta-data Information...''</ref> | + | ***** <code>META-INF</code> - The folder for '''meta'''data '''inf'''ormation files<ref>[https://stackoverflow.com/a/6075320/14416954 StackOverflow answer]: ''... Basically, if it was stored in META-INF, it was Meta-data Information...''</ref> |
| ****** <code>mods.toml</code> - The [[Proper Mod Structuring#The mods.toml file|<tt>mods.toml</tt> file]], where mods are declared | | ****** <code>mods.toml</code> - The [[Proper Mod Structuring#The mods.toml file|<tt>mods.toml</tt> file]], where mods are declared |
| ***** <code>pack.mcmeta</code> - File used by Minecraft to [[mc:Data Pack#pack.mcmeta|identify data and resource packs]] | | ***** <code>pack.mcmeta</code> - File used by Minecraft to [[mc:Data Pack#pack.mcmeta|identify data and resource packs]] |
| ** <code>.gitattributes</code> - Used by [[wikipedia:Git|Git]] for specifying attributes for files<ref>[https://git-scm.com/docs/gitattributes Official git documentation on <tt>.gitattributes</tt>]</ref> | | ** <code>.gitattributes</code> - Used by [[wikipedia:Git|Git]] for specifying attributes for files<ref>[https://git-scm.com/docs/gitattributes Official git documentation on <tt>.gitattributes</tt>]</ref> |
| ** <code>.gitignore</code> - Used by Git for specifying intentionally untracked/ignored files<ref>[https://git-scm.com/docs/gitignore Official git documentation on <tt>.gitignore</tt>]</ref> | | ** <code>.gitignore</code> - Used by Git for specifying intentionally untracked/ignored files<ref>[https://git-scm.com/docs/gitignore Official git documentation on <tt>.gitignore</tt>]</ref> |
− | ** <code>build.gradle</code> - The Gradle buildscript, which defines the project and tasks<ref>[https://docs.gradle.org/6.9/userguide/tutorial_using_tasks.html Gradle User Guide for 6.9: ''Build Script Basics'']</ref> | + | ** <code>build.gradle</code> - The Gradle buildscript, which defines the project and tasks<ref>[https://docs.gradle.org/7.1.1/userguide/tutorial_using_tasks.html Gradle User Guide for 7.1.1: ''Build Script Basics'']</ref> |
| ** <code>changelog.txt</code> - The Forge version changelog | | ** <code>changelog.txt</code> - The Forge version changelog |
| ** <code>CREDITS.txt</code> - Forge's credits/''thank you'' file | | ** <code>CREDITS.txt</code> - Forge's credits/''thank you'' file |
− | ** <code>gradle.properties</code> - The Gradle properties file, for defining additional variables and options<ref>[https://docs.gradle.org/6.9/userguide/build_environment.html#sec:gradle_configuration_properties Gradle User Guide for 6.9: ''Build Environment § Gradle properties'']</ref> | + | ** <code>gradle.properties</code> - The Gradle properties file, for defining additional variables and options<ref>[https://docs.gradle.org/7.1.1/userguide/build_environment.html#sec:gradle_configuration_properties Gradle User Guide for 7.1.1: ''Build Environment § Gradle properties'']</ref> |
| ** <code>gradlew</code> - The *nix shell file for executing the Gradle wrapper | | ** <code>gradlew</code> - The *nix shell file for executing the Gradle wrapper |
| ** <code>gradlew.bat</code> - The Windows batch file for executing the Gradle wrapper | | ** <code>gradlew.bat</code> - The Windows batch file for executing the Gradle wrapper |
| ** <code>LICENSE.txt</code> - File containing the licensing information for Forge and libraries | | ** <code>LICENSE.txt</code> - File containing the licensing information for Forge and libraries |
− | ** <code>README.txt</code> - Readme file with basic setup instructions | + | ** <code>README.txt</code> - Readme file with the basic setup instructions |
| {{Tree list/end}} | | {{Tree list/end}} |
| | | |