summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorUpcraftLP <[email protected]>2019-02-15 21:55:33 +0100
committerkeuin <[email protected]>2020-04-23 00:20:28 +0800
commitb57886059fcaaf95c0d0b686df61c30a1951c13a (patch)
tree2d6bcb5df5f66e36fce453322d3be36ef0d27161 /build.gradle
parent859655b518e2c48fb149acdd011296cd2dc086be (diff)
encoding fix for special characters
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 7 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 7471ac1..2d316c2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -21,6 +21,13 @@ dependencies {
modCompile "net.fabricmc:fabric:${project.fabric_version}"
}
+// ensure that the encoding is set to UTF-8, no matter what the system default is
+// this fixes some edge cases with special characters not displaying correctly
+// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
+tasks.withType(JavaCompile) {
+ options.encoding = "UTF-8"
+}
+
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.