Skip to content

Commit fbc3635

Browse files
committed
Bump gradle wrapper version to support compiling with JDK 24
1 parent 0a9b9fb commit fbc3635

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

doc/MultiMC.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,34 @@ For this instance, perform the following steps:
2525
- Perform the same steps but instead of `org.mcphackers.launchwrapper.json` use the contents of [org.mcphackers.launchwrapper.fabric.json](org.mcphackers.launchwrapper.fabric.json)
2626
- Make sure it's the bottom-most component and is below the regular "LaunchWrapper" component
2727

28+
## Forge
29+
To install LaunchWrapper with Forge follow instructions for Vanilla, then move "LaunchWrapper" component above Forge.
30+
31+
Edit "LaunchWrapper" component and modify `libraries` array:
32+
33+
```diff
34+
"libraries": [
35+
{
36+
"name": "org.mcphackers:launchwrapper:1.1.3",
37+
"url": "https://maven.glass-launcher.net/releases/"
38+
},
39+
- {
40+
- "name": "org.ow2.asm:asm:9.7.1",
41+
- "url": "https://maven.fabricmc.net/"
42+
- },
43+
- {
44+
- "name": "org.ow2.asm:asm-tree:9.7.1",
45+
- "url": "https://maven.fabricmc.net/"
46+
- },
47+
{
48+
"name": "org.json:json:20240303",
49+
"url": "https://repo1.maven.org/maven2/"
50+
}
51+
],
52+
```
53+
54+
This only applies to versions where Forge isn't considered a jarmod. For versions where Forge is a jarmod, use Vanilla instructions.
55+
2856
## Micromixin
2957
Micromixin is a lightweight alternative mixin implementation which can be used with standalone LaunchWrapper. Currently the implementation is barebones so many mixin annotations aren't supported. However, if the mod uses exclusively the annotations from base Mixin (Not MixinExtras) there's a high chance it'll work when recompiled with
3058
```groovy

doc/org.mcphackers.launchwrapper.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
],
55
"libraries": [
66
{
7-
"name": "org.mcphackers:launchwrapper:1.1.2",
7+
"name": "org.mcphackers:launchwrapper:1.1.3",
88
"url": "https://maven.glass-launcher.net/releases/"
99
},
1010
{

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip

0 commit comments

Comments
 (0)