Skip to content

Commit

Permalink
Add support for 1.12.1. Closes #396
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Aug 29, 2017
1 parent 2aa6bd7 commit de064ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Expand Up @@ -92,7 +92,7 @@ task buildInfo {
version = "${minecraft_version}-${mod_version}.${project.buildInfo.buildNum}"

minecraft {
version = minecraft_version + "-" + forge_version
version = minecraft_version_patch + "-" + forge_version
mappings = mappings_version
runDir = "run"
replace '${version}', project.version
Expand All @@ -113,6 +113,10 @@ processResources
}
}

jar {
finalizedBy reobfJar
}

// because the normal output has been made to be obfuscated
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
@@ -1,9 +1,10 @@
mod_version=4.3.0

minecraft_version=1.12
minecraft_version_patch=1.12.1

forge_version=14.21.1.2443
mappings_version=snapshot_20170812
forge_version=14.22.0.2463
mappings_version=snapshot_20170828

mantle_version=1.3.+
tconstruct_version=2.7.+
Expand Down

0 comments on commit de064ab

Please sign in to comment.