diff options
author | Adrian Siekierka <[email protected]> | 2018-12-09 17:49:28 +0100 |
---|---|---|
committer | keuin <[email protected]> | 2020-04-23 00:20:28 +0800 |
commit | 2b65179453dff4ecfc124879f47099f8f46a7d06 (patch) | |
tree | e1df4268b8ad448d390c42f03410d571deebbbc8 /build.gradle | |
parent | 0839008c2301ac17f663c0d7113eeed5ee87dd62 (diff) |
update library versions
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 14 |
1 files changed, 7 insertions, 7 deletions
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" } |