This repository was archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update test mod, don't run client mixins on the server
use gametest framework
- Loading branch information
1 parent
63eb74b
commit 98b753f
Showing
13 changed files
with
69 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 9 additions & 15 deletions
24
src/testmod/resources/fabric.mod.json → src/gametest/resources/fabric.mod.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,32 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "gc-testmod", | ||
"id": "gc-api-test", | ||
"version": "$version", | ||
|
||
"name": "Galacticraft API Test Mod", | ||
"description": "Test mod for the Addon API for the FabricMC port of Galacticraft.", | ||
"license": "MIT", | ||
"contact": { | ||
"homepage": "https://galacticraft.team", | ||
"sources": "https://github.com/TeamGalacticraft/Addon-API", | ||
"issues": "https://github.com/TeamGalacticraft/Addon-API/issues" | ||
"homepage": "https://galacticraft.team/", | ||
"sources": "https://github.com/TeamGalacticraft/Addon-API/", | ||
"issues": "https://github.com/TeamGalacticraft/Addon-API/issues/" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Team Galacticraft", | ||
"contact": { | ||
"homepage": "https://github.com/TeamGalacticraft", | ||
"homepage": "https://github.com/TeamGalacticraft/", | ||
"discord": "https://discord.gg/n3QqhMYyFK" | ||
} | ||
} | ||
], | ||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
"dev.galacticraft.api.testmod.GCApiTestMod" | ||
] | ||
"fabric-gametest": [ "dev.galacticraft.api.gametest.GalacticraftApiTestSuite" ] | ||
}, | ||
"depends": { | ||
"fabricloader": ">=0.10.0", | ||
"minecraft": ">=1.16.2", | ||
"galacticraft-api": ">=0.3" | ||
}, | ||
"suggests": { | ||
"modmenu": "*", | ||
"galacticraft": "*" | ||
"fabricloader": ">=0.11.6", | ||
"minecraft": ">=1.17.1", | ||
"galacticraft-api": ">=0.4.0-prealpha.19+1.17.1" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.