1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-07 04:47:55 +00:00

Bump dependency versions

Mostly in prep for 1.19.4.

 - Update to Loom 1.1.

   - Simplifies our handling of remapped configurations a little.
   - Removes the need for a fake fabric.mod.json in the API jar.

   For reasons I don't quite understand, this required us to bump the
   Fabric API version. Otherwise interfaces are not injected.

 - Update to Rollup 3.0.

 - Do NOT update NullAway: It now correctly checks @Nullable fields in
   inherited classes. This is good, but also a pain as Minecraft is a
   little over-eager in where it puts @Nullable.
This commit is contained in:
Jonathan Coates
2023-03-14 18:41:31 +00:00
parent 04fed62dad
commit a74089d8ae
21 changed files with 638 additions and 866 deletions

View File

@@ -19,6 +19,4 @@ tasks.jar {
manifest {
attributes["Fabric-Loom-Remap"] = "true"
}
from("src/main/modJson") // TODO: Remove once Loom 1.1 is out.
}

View File

@@ -1,9 +0,0 @@
{
"schemaVersion": 1,
"id": "computercraft_api_stub",
"version": "1.0",
"name": "ComputerCraft API",
"description": "A placeholder mod to ensure Loom deobfuscates the API jar.",
"license": "ComputerCraft Public License (https://raw.githubusercontent.com/dan200/ComputerCraft/master/LICENSE)",
"environment": "*"
}