diff options
author | asie <[email protected]> | 2018-11-06 10:51:23 +0100 |
---|---|---|
committer | keuin <[email protected]> | 2020-04-23 00:20:14 +0800 |
commit | 818fe11d9833602f1bbadb35cce2f44528a56433 (patch) | |
tree | baaf6a0003e9fea869c079fb8b20a038eb91bab3 | |
parent | 3d91fd7897209f24c172f25fe4331fcda156001d (diff) |
update to 0.0.13
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | build.gradle | 13 | ||||
-rw-r--r-- | src/main/resources/modid.client.json | 3 | ||||
-rw-r--r-- | src/main/resources/modid.common.json | 3 |
4 files changed, 9 insertions, 12 deletions
@@ -8,7 +8,7 @@ 2. Run the following command: ``` -./gradlew setup idea +./gradlew idea ``` ## License diff --git a/build.gradle b/build.gradle index 55bd3f8..7686b60 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { } } dependencies { - classpath "net.fabricmc:fabric-loom:0.0.12-SNAPSHOT" + classpath "net.fabricmc:fabric-loom:0.0.13-SNAPSHOT" } } @@ -26,11 +26,10 @@ archivesBaseName = "modid" version = "1.0.0" minecraft { - // You can find the latest versions on https://fabric.asie.pl/use/. - version = "18w44a" - pomfVersion = "27" - fabricVersion = "0.1.0.40" +} - // Optional. Remove if you're not using Mixins. - refmapName = "modid.refmap.json" +dependencies { + minecraft "com.mojang:minecraft:18w44a" + mappings "net.fabricmc:pomf:18w44a.38" + modCompile "net.fabricmc:fabric-loader:18w44a-0.1.0.43" } diff --git a/src/main/resources/modid.client.json b/src/main/resources/modid.client.json index d6fc9b4..7e8bcc4 100644 --- a/src/main/resources/modid.client.json +++ b/src/main/resources/modid.client.json @@ -5,8 +5,7 @@ "mixins": [ "ExampleMixin" ], - "refmap": "modid.refmap.json", "injectors": { "defaultRequire": 1 } -}
\ No newline at end of file +} diff --git a/src/main/resources/modid.common.json b/src/main/resources/modid.common.json index a39340e..b26285f 100644 --- a/src/main/resources/modid.common.json +++ b/src/main/resources/modid.common.json @@ -4,8 +4,7 @@ "compatibilityLevel": "JAVA_8", "mixins": [ ], - "refmap": "modid.refmap.json", "injectors": { "defaultRequire": 1 } -}
\ No newline at end of file +} |