diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-08 21:34:37 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-08 21:34:37 +0200 |
commit | c7478eb9dc781d6ab721954c256c8073ce564356 (patch) | |
tree | f9a95f2e54413f1d2cde04ed7a5ceb8e97b890c9 /build.gradle | |
parent | 9199e7af452fb4c767911db3e68c9b357ca2159a (diff) | |
download | parquet-c7478eb9dc781d6ab721954c256c8073ce564356.tar.gz |
update gradle
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 5b52251..f593ba6 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.7-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 |