From d643a44c866504a642f9de0055417a82585d96e5 Mon Sep 17 00:00:00 2001 From: Xander Date: Tue, 30 Aug 2022 16:53:16 +0100 Subject: Initial commit --- .../java/dev/isxander/fabricmodtemplate/.gitkeep | 0 .../dev/isxander/fabricmodtemplate/mixins/.gitkeep | 0 src/main/resources/fabric-mod-template.mixins.json | 9 +++++++ src/main/resources/fabric.mod.json | 28 ++++++++++++++++++++++ 4 files changed, 37 insertions(+) create mode 100644 src/main/java/dev/isxander/fabricmodtemplate/.gitkeep create mode 100644 src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep create mode 100644 src/main/resources/fabric-mod-template.mixins.json create mode 100644 src/main/resources/fabric.mod.json (limited to 'src') diff --git a/src/main/java/dev/isxander/fabricmodtemplate/.gitkeep b/src/main/java/dev/isxander/fabricmodtemplate/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep b/src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/main/resources/fabric-mod-template.mixins.json b/src/main/resources/fabric-mod-template.mixins.json new file mode 100644 index 0000000..9ac6462 --- /dev/null +++ b/src/main/resources/fabric-mod-template.mixins.json @@ -0,0 +1,9 @@ +{ + "package": "dev.isxander.fabricmodtemplate.mixins", + "required": true, + "minVersion": "0.8", + "compatibilityLevel": "JAVA_17", + "mixins": [ + + ] +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..95b5d16 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,28 @@ +{ + "schemaVersion": 1, + "id": "${id}", + "version": "${version}", + "name": "${name}", + "description": "${description}", + "authors": [ + "isXander" + ], + "contact": { + "homepage": "https://isxander.dev", + "issues": "https://github.com/${github}/issues", + "sources": "https://github.com/${github}" + }, + "license": "LGPL-3.0-or-later", + "environment": "client", + "entrypoints": { + + }, + "mixins": [ + "fabric-mod-template.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.0", + "minecraft": "1.19.x", + "java": ">=17" + } +} -- cgit