diff options
author | isXander <xandersmith2008@gmail.com> | 2022-11-17 17:18:19 +0000 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2022-11-17 17:18:19 +0000 |
commit | 3a86e9d2ba89466f7f9ef51c29eb5879bcb8a98e (patch) | |
tree | d3617930fed50a945ce4ff9ee76b8dbd7df46968 /src/testmod/resources | |
parent | af4484ecee46300a26952b9b9b41e7a2e80d3f78 (diff) | |
download | YetAnotherConfigLib-3a86e9d2ba89466f7f9ef51c29eb5879bcb8a98e.tar.gz YetAnotherConfigLib-3a86e9d2ba89466f7f9ef51c29eb5879bcb8a98e.tar.bz2 YetAnotherConfigLib-3a86e9d2ba89466f7f9ef51c29eb5879bcb8a98e.zip |
22w46a
Diffstat (limited to 'src/testmod/resources')
-rw-r--r-- | src/testmod/resources/fabric.mod.json | 13 | ||||
-rw-r--r-- | src/testmod/resources/yet-another-config-lib.test.mixins.json | 11 |
2 files changed, 16 insertions, 8 deletions
diff --git a/src/testmod/resources/fabric.mod.json b/src/testmod/resources/fabric.mod.json index 1360a5e..5fe0919 100644 --- a/src/testmod/resources/fabric.mod.json +++ b/src/testmod/resources/fabric.mod.json @@ -11,15 +11,12 @@ "entrypoints": { "client": [ "dev.isxander.yacl.test.config.Entrypoint" - ], - "modmenu": [ - "dev.isxander.yacl.test.ModMenuIntegration" ] }, "depends": { - "fabricloader": ">=0.14.0", - "minecraft": "1.19.x", - "java": ">=17", - "fabric-resource-loader-v0": "*" - } + "yet-another-config-lib": "*" + }, + "mixins": [ + "yet-another-config-lib.test.mixins.json" + ] } diff --git a/src/testmod/resources/yet-another-config-lib.test.mixins.json b/src/testmod/resources/yet-another-config-lib.test.mixins.json new file mode 100644 index 0000000..9287cdd --- /dev/null +++ b/src/testmod/resources/yet-another-config-lib.test.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "dev.isxander.yacl.test.mixins", + "compatibilityLevel": "JAVA_17", + "injectors": { + "defaultRequire": 1 + }, + "client": [ + "TitleScreenMixin" + ] +} |