User Tools

Site Tools


tutorial:setup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tutorial:setup [2024/06/30 00:02] – ↷ Links adapted because of a move operation 2600:387:c:6c19::9tutorial:setup [2024/10/29 14:30] (current) – [Minecraft game provider couldn't locate the game] solidblock
Line 1: Line 1:
 +~~REDIRECT>https://docs.fabricmc.net/develop/getting-started/setting-up-a-development-environment~~
 +
 ====== Setting up a mod development environment ====== ====== Setting up a mod development environment ======
  
 ===== Prerequisites ===== ===== Prerequisites =====
-   * A Java Development Kit (JDK) for Java 21 (recommended for 1.20.5) or newer. Visit [[https://adoptium.net/releases.html]] for installers. 
-       * If you are professional, you can obtain a JDK from [[http://jdk.java.net/]], which needs to be extracted and have system variables set up manually. 
-   * Any Java IDE, for example [[https://www.jetbrains.com/idea/download/#section=windows|Intellij IDEA]] and [[https://www.eclipse.org/downloads/|Eclipse]]. You may also use any other code editors, such as [[https://code.visualstudio.com/|Visual Studio Code]]. 
-       * If you are not familiar with any of these, we recommend to use Intellij IDEA as that is what most people choose for modding. 
  
-===== Mod Setup ===== +==== Installing JDK ==== 
-==== Manual Steps ==== +To develop mods, a Java Development Kit (JDK) is required. Visit [[https://adoptium.net/releases.html]] for installers. If you are professional, you can obtain a JDK from [[http://jdk.java.net/]], which needs to be extracted and have system variables set up manually. 
-   Copy the starting files from [[https://github.com/FabricMC/fabric-example-mod/|fabric-example-mod]] (or from [[https://fabricmc.net/develop/template/|the template generator]], if you wish to use Kotlin or other featues.) excluding the ''LICENSE'' and ''README.md'' files as those apply to the template itself, not necessarily to your mod. +  * Since 1.20.5, Java 21 or newer is required. 
-   - Edit ''gradle.properties'':+  * Since 1.18, Java 17 or newer is required. 
 +  * Since 1.17, Java 16 or newer is required. 
 +  * For older Minecraft versions, Java 8 or newer is required. 
 + 
 +More information about installing Java can be found: 
 +  * Fabric Wiki's player tutorial of installing Java for [[player:tutorials:java:windows|Windows]], [[player:tutorials:java:mac|MacOS]] or [[player:tutorials:java:linux|Linux]] 
 +  * Fabric Documentation's player tutorial of installing Java for [[https://docs.fabricmc.net/zh_cn/players/installing-java/windows|Windows]], [[https://fabricmc.net/wiki/player:tutorials:java:mac|MasOS]] or [[https://docs.fabricmc.net/zh_cn/players/installing-java/linux|Linux]] 
 + 
 +==== Installing an IDE ==== 
 + 
 +Before writing your code, you install have any Java IDE installed, for example [[https://www.jetbrains.com/idea/download/#section=windows|Intellij IDEA]] and [[https://www.eclipse.org/downloads/|Eclipse]]. You may also use any other code editors, such as [[https://code.visualstudio.com/|Visual Studio Code]]. 
 + 
 +If you are not familiar with any of these, we recommend to use Intellij IDEA as that is what most people choose for modding. 
 + 
 +===== Creatng the project ===== 
 +> Detailed tutorial can be found on [[https://docs.fabricmc.net/develop/getting-started/creating-a-project|Fabric Documentation]] 
 + 
 +There are multiple ways to create a project: 
 +  * copy template project from [[https://github.com/FabricMC/fabric-example-mod/|fabric-example-mod]], excluding the ''LICENSE'' and ''README.md'' file 
 +  * use template generator at [[https://fabricmc.net/develop/template/|the template generator]] 
 +  * use Intellij IDEA's generator, which requires installing Intellij IDEA's Minecraft Development plugin. 
 + 
 +After creating a project, please edit some key files as you wish: 
 +  Edit ''gradle.properties'':
        * Make sure to set ''archives_base_name'' and ''maven_group'' to your preferred values.        * Make sure to set ''archives_base_name'' and ''maven_group'' to your preferred values.
        * Make sure to update the versions of Minecraft, the mappings, the loader and the loom - all of which can be queried through https://fabricmc.net/develop/ - to match the versions you wish to target.        * Make sure to update the versions of Minecraft, the mappings, the loader and the loom - all of which can be queried through https://fabricmc.net/develop/ - to match the versions you wish to target.
        * Add any other dependencies you plan to use in ''build.gradle''.        * Add any other dependencies you plan to use in ''build.gradle''.
-   - Import the build.gradle file to your IDEYou may refer to the next section for specific IDE's. +  * Edit ''fabric.mod.json'': 
-   - Happy modding!+       * Change the versions your mod is compatible, and mods your mod will depend on, as well as some other information like mod idFor information, see [[documentation:fabric_mod_json|usage of the file]].
  
-=== Fabric Mod ID Change === +> :!: As of Minecraft 1.19.2, Fabric API's mod ID has changed from ''fabric'' to ''fabric-api''. When backporting from 1.19.2 to earlier versions, you must alter the ''depends'' section of your ''fabric.mod.json'' to expect ''fabric''.
-As of Minecraft 1.19.2, Fabric API's mod ID has changed from ''fabric'' to ''fabric-api''. When backporting from 1.19.2 to earlier versions, you must alter the ''depends'' section of your ''fabric.mod.json'' to expect ''fabric''.+
  
-=== IntelliJ IDEA ===+===== Configuring the project ===== 
 + 
 +==== IntelliJ IDEA ====
 If you are using IntelliJ IDEA by JetBrains, please follow these steps: If you are using IntelliJ IDEA by JetBrains, please follow these steps:
     - In the IDEA main menu, select 'Import Project' (or File -> Open... if you already have a project open).     - In the IDEA main menu, select 'Import Project' (or File -> Open... if you already have a project open).
-    - Select the project's build.gradle file to import the project. +    - Select the project'"build.gradlefile to import the project. 
-    - After Gradle is done setting up, close (File -> Close Project) and re-open the project to fix run configurations not displaying correctly. +    - After Gradle is done setting up, close (File -> Close Project) and re-open the project to fix run configurations not displaying correctly. If the run configurations still don't show up, try reimporting the Gradle project from the Gradle tab in IDEA. You can also manually run ''ideaSyncTask'' gradle task to generate run configurations.
-    - (If the run configurations still don't show up, try reimporting the Gradle project from the Gradle tab in IDEA.+
- +
-//Optional, but recommended//: +
-By default, IntelliJ delegates to Gradle to build the project. This is unnecessary for Fabric and causes longer build times and hotswapping related weirdness, among other problems. To make it use the builtin compiler: +
-    - Open the 'Gradle Settings' dialog from the Gradle tab. +
-    - Change the 'Build and run usingand 'Run tests usingfields to 'IntelliJ IDEA'+
- +
-Unfortunately, it is currently impossible to set an IDE-wide default for the 'Build and run using' and 'Run tests using' options, so these steps have to be repeated for every new project.+
  
 **NOTE:** Don't run the ''idea'' gradle task. It is known to break development environment. **NOTE:** Don't run the ''idea'' gradle task. It is known to break development environment.
  
-If you are using IntelliJ IDEA you can use the [[https://plugins.jetbrains.com/plugin/8327|MinecraftDev plugin]]+=== Installing Minecraft Developent plugin === 
-This plugin adds support for automatically generating Fabric projects as well as some mixin related features like inspections, +If you are using IntelliJ IDEA, it is highly recommended to install [[https://plugins.jetbrains.com/plugin/8327|Minecraft Development plugin]], which support automatically generating Fabric projects as well as some mixin related features like inspections, generating accessors/shadow fields, and copying Mixin Target References (JVM Descriptors). 
-generating accessors/shadow fields, and copying Mixin Target References (JVM Descriptors). + 
-You can install it using IntelliJ's internal plugin browser by navigating to File → Settings → Plugins, +You can install it using IntelliJ's internal plugin browser by navigating to File → Settings → Plugins, then clicking the Marketplace tab and searching for Minecraft.
-then clicking the Marketplace tab and searching for Minecraft.+
  
-**NOTE:** The default template in the mcdev plugin blindly uses the latest unstable version of the loom. Use with caution.+For launching Minecraft and start debugging, see [[https://docs.fabricmc.net/develop/getting-started/launching-the-game|Fabric Documentations]].
  
-=== Eclipse ===+==== Eclipse ====
 If you are using Eclipse and you would like to have the IDE run configs you can run ''gradlew eclipse''. The project can then be imported as a normal (non-gradle) Eclipse project into your workspace using the 'File' - 'Import...' menu, then 'General' -> 'Existing Projects into Workspace'. If you are using Eclipse and you would like to have the IDE run configs you can run ''gradlew eclipse''. The project can then be imported as a normal (non-gradle) Eclipse project into your workspace using the 'File' - 'Import...' menu, then 'General' -> 'Existing Projects into Workspace'.
  
-=== Visual Studio Code ===+==== Visual Studio Code ====
 If you are using VSCode, please follow [[tutorial:setup:vscode|these instructions]]. If you are using VSCode, please follow [[tutorial:setup:vscode|these instructions]].
  
Line 61: Line 74:
  
 See [[tutorial:reading_mc_code|Reading the Minecraft source]] for how to read the source. See [[tutorial:reading_mc_code|Reading the Minecraft source]] for how to read the source.
- 
-===== Getting started ===== 
-Try [[tutorial:items|adding an item]] or [[tutorial:blocks|a block]]. It's also a good idea to visit [[tutorial:hotswapping|Applying changes without restarting Minecraft]]. 
  
 ===== Advice ===== ===== Advice =====
Line 82: Line 92:
 Sometimes, when importing the Gradle project into an IDE, the assets might not download correctly. In this case, run the ''downloadAssets'' task manually - either using IDE's built-in menu or by simply running ''gradlew downloadAssets''. Sometimes, when importing the Gradle project into an IDE, the assets might not download correctly. In this case, run the ''downloadAssets'' task manually - either using IDE's built-in menu or by simply running ''gradlew downloadAssets''.
  
-==== Could not find or load class net.fabricmc.devlaunchinjector.Main: java.lang.ClassNotFoundException "no JDK module specified" in the run config  ==== +==== Could not find or load class / no JDK module specified  ==== 
-It seems to be a bug of Intellij IDEA since a recent update 2023.2. To fix, just delete the `.ideafolder entirely and then restart Intellij IDEA. The module will be reconstructed. You may need to specify Java versions again. If after restarting there is no run config, you can run `gradle ideaSyncTaskthen check it again.+Sometimes the run config may be invalid, reporting errors such as: 
 +  * ''Could not find or load class net.fabricmc.devlaunchinjector.Main: java.lang.ClassNotFoundException'' 
 +  * "no JDK module specified" in the run config 
 + 
 +There are several fixes, among which one may be a potential fix: 
 +  * If you're using Intellij IDEA, go to "project strcture" and then select "Modules" tab, then clear all modules. Then reload your gradle project. 
 +  It seems to be a bug of Intellij IDEA since a recent update 2023.2. To fix, just delete the ''.idea'' folder entirely and then restart Intellij IDEA. The module will be reconstructed. You may need to specify Java versions again. If after restarting there is no run config, you can run ''gradle ideaSyncTask'' then check it again
 +  * If you have subprojects, please ensure your subprojects are configured correctly. If the ''build.gradle'' of your subproject exists, check whether the gradle plugin ''maven-publish'' is enabled or applied to it. Try adding ''apply plugin: maven-publush'' in the ''build.gradle'' file, if it is not declared at all. 
 +  * If the issue still happens, edit the run config, and try modifying the module (the value for parameter ''-cp'') to other values. 
 + 
 +==== Minecraft game provider couldn't locate the game ==== 
 +Sometimes you may come with some error like: 
 +  * ''java.lang.ClassNotFoundException: net.fabricmc.loader.impl.launch.knot.KnotClient'' 
 +  * ''java.lang.TypeNotPresentException: Type net/minecraft/util/Identifier not present'' 
 +  * ''java.lang.RuntimeException: Minecraft game provider couldn't locate the game! The game may be absent from the class path, lacks some expected files, suffers from jar corruption or is of an unsupported variety/version.'' 
 + 
 +This may be because the project path contains non-ASCII characters that may cause incompatibility. Try move the project to paths without non-ASCII characters, or in the run config of "Minecraft Client" and "Minecraft Server", set "Shorten Command Line" from "@argfile (Java 9+)" to "none". This also applies to the [[tutorial:datagen_setup|Data Generation]] run config. 
 + 
 +Another potential fix, is to go to Region Settings in the Settings or Contral Panel of Windows, go to Region Settings, and enable "Beta: Use Unicode UTF-8 for worldwide language support", and then reboot. 
 +==== "processResources" not run ==== 
 + 
 +That may be because you're using Intellij IDEA to build and run. If issue happens, try open the 'Gradle Settings' dialog from the Gradle tab, and then change the 'Build and run using' and 'Run tests using' fields from 'IntelliJ IDEA' to 'Gradle (default)'.
  
-==== java.lang.ClassNotFoundException: net.fabricmc.loader.impl.launch.knot.KnotClient / java.lang.TypeNotPresentException: Type net/minecraft/util/Identifier not present / java.lang.RuntimeException: Minecraft game provider couldn't locate the game! The game may be absent from the class path, lacks some expected files, suffers from jar corruption or is of an unsupported variety/version. ==== 
-This may be because the project path contains non-ASCII characters that may cause incompatibility. Try move the project to paths without non-ASCII characters, or in the run config of "Minecraft Client" and "Minecraft Server", set "Shorten Command Line" from "@argfile (Java 9+)" to "none". 
 ===== What's Next?  ===== ===== What's Next?  =====
-Create your first [[tutorial:items|item]].+Try [[items|adding an item]] or [[blocks|a block]]. It's also a good idea to visit [[tutorial:hotswapping|Applying changes without restarting Minecraft]].
tutorial/setup.1719705739.txt.gz · Last modified: 2024/06/30 00:02 by 2600:387:c:6c19::9