Jelajahi Sumber

Use correct encoding for compilation

Lars Grefer 6 tahun lalu
induk
melakukan
1048601f3d
1 mengubah file dengan 4 tambahan dan 0 penghapusan
  1. 4 0
      build.gradle

+ 4 - 0
build.gradle

@@ -30,4 +30,8 @@ subprojects {
 	plugins.withType(JavaPlugin) {
 		project.sourceCompatibility='1.8'
 	}
+
+	tasks.withType(JavaCompile) {
+		options.encoding = "latin1"
+	}
 }