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/current/userguide/gradle_wrapper.html Gradle wrapper]'', Forge uses Gradle '''4.10.3''''' | + | ** <code>gradle/wrapper/</code> - The folder containing the [https://docs.gradle.org/current/userguide/gradle_wrapper.html Gradle wrapper]'', Forge uses Gradle '''6.8.1''''' |
| ** <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 17: |
Line 17: |
| ** <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/4.10.3/userguide/tutorial_using_tasks.html Gradle User Guide for 4.10.3: ''Build Script Basics'']</ref> | + | ** <code>build.gradle</code> - The Gradle buildscript, which defines the project and tasks<ref>[https://docs.gradle.org/6.8.1/userguide/tutorial_using_tasks.html Gradle User Guide for 6.8.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/4.10.3/userguide/build_environment.html#sec:gradle_configuration_properties Gradle User Guide for 4.10.3: ''Build Environment § Gradle properties'']</ref> | + | ** <code>gradle.properties</code> - The Gradle properties file, for defining additional variables and options<ref>[https://docs.gradle.org/6.8.1/userguide/build_environment.html#sec:gradle_configuration_properties Gradle User Guide for 6.8.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 |