Update to forge 37.1.0

This commit is contained in:
IzzelAliz 2021-12-01 17:13:52 +08:00
parent bd910af6cd
commit 743c586233
No known key found for this signature in database
GPG Key ID: EE50E123A11D8338
3 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,8 @@ A Bukkit server implementation utilizing Mixin.
| Minecraft | Forge | Status | Build |
| :----: | :----: | :---: | :---: |
| 1.17.x | 37.0.103 | ACTIVE | [![1.17 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-17?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-17) |
| 1.18.x | 38.0.4 | - | - |
| 1.17.x | 37.1.0 | LEGACY | [![1.17 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-17?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-17) |
| 1.16.x | 36.2.0 | ACTIVE | [![1.16 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-16?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-16) |
| 1.15.x | 31.2.48 | [LEGACY](https://github.com/IzzelAliz/Arclight/releases/tag/1.15/1.0.19) | [![1.15 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-15?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-15) |
| 1.14.x | 28.2.0 | [LEGACY](https://github.com/IzzelAliz/Arclight/releases/tag/1.0.6) | [![1.14 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight) |

View File

@ -14,7 +14,7 @@ allprojects {
ext {
agpVersion = '1.20'
minecraftVersion = '1.17.1'
forgeVersion = '37.0.103'
forgeVersion = '37.1.0'
apiVersion = '1.1.+'
toolsVersion = '1.3.+'
mixinVersion = '0.8.4'

View File

@ -103,6 +103,7 @@ public class ForgeInstaller {
Method method = loader.loadClass("net.minecraftforge.installer.SimpleInstaller").getMethod("main", String[].class);
method.invoke(null, (Object) new String[]{"--installServer", ".", "--debug"});
}
System.exit(0);
}
handleFutures(System.out::println, array);
pool.shutdownNow();