From 2b65179453dff4ecfc124879f47099f8f46a7d06 Mon Sep 17 00:00:00 2001 From: Adrian Siekierka Date: Sun, 9 Dec 2018 17:49:28 +0100 Subject: update library versions --- build.gradle | 14 +++++++------- src/main/resources/fabric.mod.json | 11 +++++++++++ src/main/resources/mod.json | 11 ----------- 3 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 src/main/resources/fabric.mod.json delete mode 100644 src/main/resources/mod.json diff --git a/build.gradle b/build.gradle index 56973f8..24c4ccc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,5 @@ plugins { - id 'java' - id 'eclipse' - id 'idea' - id 'fabric-loom' version '0.0.13-SNAPSHOT' + id 'fabric-loom' version '0.1.0-SNAPSHOT' } sourceCompatibility = 1.8 @@ -15,7 +12,10 @@ minecraft { } dependencies { - minecraft "com.mojang:minecraft:18w48b" - mappings "net.fabricmc:pomf:18w48b.4" - modCompile "net.fabricmc:fabric-loader:0.1.0.48" + minecraft "com.mojang:minecraft:18w49a" + mappings "net.fabricmc:pomf:18w49a.19" + modCompile "net.fabricmc:fabric-loader:0.2.0.53" + + // Fabric API. This is technically optional, but you probably want it anyway. + modCompile "net.fabricmc:fabric:0.1.0" } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..f9dcafd --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,11 @@ +{ + "id": "modid", + "name": "Example Mod", + "version": "1.0.0", + "side": "universal", + "initializer": "net.fabricmc.example.ExampleMod", + "mixins": { + "client": "modid.client.json", + "common": "modid.common.json" + } +} \ No newline at end of file diff --git a/src/main/resources/mod.json b/src/main/resources/mod.json deleted file mode 100644 index f9dcafd..0000000 --- a/src/main/resources/mod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "id": "modid", - "name": "Example Mod", - "version": "1.0.0", - "side": "universal", - "initializer": "net.fabricmc.example.ExampleMod", - "mixins": { - "client": "modid.client.json", - "common": "modid.common.json" - } -} \ No newline at end of file -- cgit v1.2.3