summary refs log tree commit diff stats
path: root/build.gradle
diff options
context:
space:
mode:
authorUpcraftLP <j-schirra@gmx.de>2019-02-15 21:55:33 +0100
committerUpcraftLP <j-schirra@gmx.de>2019-02-15 21:55:33 +0100
commit133913f4204fd0cb8241e3f4c69017ca20963e98 (patch)
tree2d6bcb5df5f66e36fce453322d3be36ef0d27161 /build.gradle
parent8bbfcdcb4b36b59fe1320a2e48378c3001ba42f4 (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.