aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-18 17:21:23 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-18 17:21:23 +0800
commite6b53189fc8c868c588fc08053e0385134ff94e1 (patch)
treeb280e7719f08e4caf928cf4e94ce56d2c0a055fa /build.gradle
parent787d880828aed3aea46b61f0f5ebba44d1e33007 (diff)
downloadRoughlyEnoughItems-e6b53189fc8c868c588fc08053e0385134ff94e1.tar.gz
RoughlyEnoughItems-e6b53189fc8c868c588fc08053e0385134ff94e1.tar.bz2
RoughlyEnoughItems-e6b53189fc8c868c588fc08053e0385134ff94e1.zip
19w03b Support
Diffstat (limited to 'build.gradle')
-rwxr-xr-xbuild.gradle16
1 files changed, 10 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index bbe523b53..9dd64d50e 100755
--- a/build.gradle
+++ b/build.gradle
@@ -1,23 +1,27 @@
plugins {
- id 'fabric-loom' version '0.1.0-SNAPSHOT'
+ id 'fabric-loom' version '0.2.0-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
archivesBaseName = "RoughlyEnoughItems"
-version = "2.0.0.38"
+version = "2.0.0.39"
+
+def minecraftVersion = "19w03b"
+def yarnVersion = "19w03b.2"
+def fabricVersion = "0.1.4.76"
minecraft {
}
dependencies {
- minecraft "com.mojang:minecraft:19w02a"
- mappings "net.fabricmc:yarn:19w02a.20"
- modCompile "net.fabricmc:fabric-loader:0.3.2.95"
+ minecraft "com.mojang:minecraft:${minecraftVersion}"
+ mappings "net.fabricmc:yarn:${yarnVersion}"
+ modCompile "net.fabricmc:fabric-loader:0.3.2.96"
// Fabric API. This is technically optional, but you probably want it anyway.
- modCompile "net.fabricmc:fabric:0.1.4.71"
+ modCompile "net.fabricmc:fabric:${fabricVersion}"
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task