diff --git a/.gitignore b/.gitignore index f4f3953..007587d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,15 @@ .gradle -.idea build + +# eclipse +.settings +.classpath +.project +bin + +# idea +.idea +*.iml +*.ipr +*.iws out \ No newline at end of file diff --git a/README.md b/README.md index c443754..db9aed1 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,10 @@ Allow MultiMC to launch Minecraft 1.13+ with Forge. 1. Download Forge installer for Minecraft 1.13+ at [https://files.minecraftforge.net/]. 2. Download ForgeWrapper jar file at the [release](https://github.com/ZekerZhayard/ForgeWrapper/releases) page. 3. Run the below command in terminal: - ``` - java -jar [--installer] [--instance ] - ``` - *Notice: If you don't specify a MultiMC instance path, ForgeWrapper will create the instance folder in current working space.* + ``` + java -jar [--installer] [--instance ] + ``` + *Notice: If you don't specify a MultiMC instance path, ForgeWrapper will create the instance folder in current working space.* + 4. If the instance folder which just created is not in `MultiMC/instances` folder, you just need to move to the `MultiMC/instances` folder. 5. Run MultiMC, and you will see a new instance named `forge--`. \ No newline at end of file diff --git a/build.gradle b/build.gradle index 89794dc..fa85405 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,6 @@ apply plugin: "base" apply plugin: "java" +apply plugin: "eclipse" apply plugin: "idea" sourceCompatibility = targetCompatibility = 1.8