diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-10-19 01:27:20 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-10-19 01:27:20 -0400 |
commit | 73c531d1844b396fcfc6d0bf308c86aa0bf72b83 (patch) | |
tree | 2647052c4892e1ca0ffaa8a6c73631c449c56a1c /build.gradle | |
parent | 091f53b763e73e9da207debfe71d6012d9dba285 (diff) |
Update to 1.16
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle index 8d86f6d..220d900 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.2.7-SNAPSHOT' + id 'fabric-loom' version '0.5-SNAPSHOT' id 'maven-publish' } @@ -26,14 +26,9 @@ dependencies { processResources { inputs.property "version", project.version - from(sourceSets.main.resources.srcDirs) { - include "fabric.mod.json" + filesMatching("fabric.mod.json") { expand "version": project.version } - - from(sourceSets.main.resources.srcDirs) { - exclude "fabric.mod.json" - } } // ensure that the encoding is set to UTF-8, no matter what the system default is |