diff --git a/build.gradle b/build.gradle index 7bb6d80..7a98155 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ ext.buildnumber = System.getenv().BUILD_NUMBER ?: 'custom'; group = 'com.tterrag.blur' archivesBaseName = "Blur" -version = "${mod_version}-${buildnumber}" +version = "${mod_version}-${minecraft_version}[fabric]${buildnumber}" sourceCompatibility = '1.8' targetCompatibility = '1.8' @@ -27,10 +27,10 @@ minecraft { } dependencies { - minecraft "com.mojang:minecraft:18w50a" - mappings "net.fabricmc:yarn:18w50a.2" - modCompile "net.fabricmc:fabric-loader:0.2.0.64" - modCompile "net.fabricmc:fabric:0.1.1.47" + minecraft "com.mojang:minecraft:${minecraft_version}" + mappings "net.fabricmc:yarn:${minecraft_version}.${mappings_version}" + modCompile "net.fabricmc:fabric-loader:${fabric_loader_version}" + modCompile "net.fabricmc:fabric:${fabric_version}" implementation 'com.google.code.findbugs:jsr305:3.0.2' } diff --git a/gradle.properties b/gradle.properties index 1f6a7f1..4056704 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ minecraft_version=1.10.2 forge_version=12.18.3.2297 -mod_version=1.0.4-fabric +mod_version=1.0.4-fabric.18w50a project_id=268324 release_type=release