From 13c7ba45ff201423eb8dba8a40cfb66ebb531439 Mon Sep 17 00:00:00 2001 From: Xander Date: Tue, 25 Apr 2023 16:28:41 +0100 Subject: Architectury! (#61) --- src/testmod/resources/fabric.mod.json | 22 ---------------------- .../yet-another-config-lib.test.mixins.json | 11 ----------- 2 files changed, 33 deletions(-) delete mode 100644 src/testmod/resources/fabric.mod.json delete mode 100644 src/testmod/resources/yet-another-config-lib.test.mixins.json (limited to 'src/testmod/resources') diff --git a/src/testmod/resources/fabric.mod.json b/src/testmod/resources/fabric.mod.json deleted file mode 100644 index d682084..0000000 --- a/src/testmod/resources/fabric.mod.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "schemaVersion": 1, - "id": "test-mod", - "version": "1", - "name": "YACL Test", - "authors": [ - "isXander" - ], - "license": "LGPL-3.0-or-later", - "environment": "client", - "entrypoints": { - "client": [ - "dev.isxander.yacl.test.ExampleMod" - ] - }, - "depends": { - "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 deleted file mode 100644 index 9287cdd..0000000 --- a/src/testmod/resources/yet-another-config-lib.test.mixins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "required": true, - "package": "dev.isxander.yacl.test.mixins", - "compatibilityLevel": "JAVA_17", - "injectors": { - "defaultRequire": 1 - }, - "client": [ - "TitleScreenMixin" - ] -} -- cgit