Clean up buildscript

This commit is contained in:
tterrag
2018-12-13 02:03:17 -05:00
parent 65d9375bfe
commit 0450c9238a
2 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ ext.buildnumber = System.getenv().BUILD_NUMBER ?: 'custom';
group = 'com.tterrag.blur' group = 'com.tterrag.blur'
archivesBaseName = "Blur" archivesBaseName = "Blur"
version = "${mod_version}-${buildnumber}" version = "${mod_version}-${minecraft_version}[fabric]${buildnumber}"
sourceCompatibility = '1.8' sourceCompatibility = '1.8'
targetCompatibility = '1.8' targetCompatibility = '1.8'
@@ -27,10 +27,10 @@ minecraft {
} }
dependencies { dependencies {
minecraft "com.mojang:minecraft:18w50a" minecraft "com.mojang:minecraft:${minecraft_version}"
mappings "net.fabricmc:yarn:18w50a.2" mappings "net.fabricmc:yarn:${minecraft_version}.${mappings_version}"
modCompile "net.fabricmc:fabric-loader:0.2.0.64" modCompile "net.fabricmc:fabric-loader:${fabric_loader_version}"
modCompile "net.fabricmc:fabric:0.1.1.47" modCompile "net.fabricmc:fabric:${fabric_version}"
implementation 'com.google.code.findbugs:jsr305:3.0.2' implementation 'com.google.code.findbugs:jsr305:3.0.2'
} }

View File

@@ -1,6 +1,6 @@
minecraft_version=1.10.2 minecraft_version=1.10.2
forge_version=12.18.3.2297 forge_version=12.18.3.2297
mod_version=1.0.4-fabric mod_version=1.0.4-fabric.18w50a
project_id=268324 project_id=268324
release_type=release release_type=release