Commit 509a79d521c8b7ccb7c4b36373da1db8d425a91e

Authored by Mumfrey
1 parent 7aca387f

ExampleMod for 1.11.2

build.gradle
@@ -29,8 +29,8 @@ group = "com.mumfrey.examplemod" // http://maven.apache.org/guides/mini/guide-na @@ -29,8 +29,8 @@ group = "com.mumfrey.examplemod" // http://maven.apache.org/guides/mini/guide-na
29 archivesBaseName = "examplemod" 29 archivesBaseName = "examplemod"
30 30
31 minecraft { 31 minecraft {
32 - version = "1.11"  
33 - mappings = "snapshot_20161124" 32 + version = "1.11.2"
  33 + mappings = "snapshot_20161224"
34 runDir = "run" 34 runDir = "run"
35 } 35 }
36 36
@@ -48,7 +48,7 @@ mixin { @@ -48,7 +48,7 @@ mixin {
48 litemod { 48 litemod {
49 json { 49 json {
50 name = "test" 50 name = "test"
51 - mcversion = "1.11.r1" 51 + mcversion = "1.11.r2"
52 mixinConfigs += "mixins.example.json" 52 mixinConfigs += "mixins.example.json"
53 } 53 }
54 } 54 }
src/main/resources/litemod.json
1 { 1 {
2 "name": "example", 2 "name": "example",
3 "version": 0.0, 3 "version": 0.0,
4 - "mcversion": "1.11.r1", 4 + "mcversion": "1.11.r2",
5 "mixinConfigs": [ 5 "mixinConfigs": [
6 "mixins.example.json" 6 "mixins.example.json"
7 ] 7 ]