Преглед изворни кода

Use correct encoding for compilation

Lars Grefer пре 6 година
родитељ
комит
1048601f3d
1 измењених фајлова са 4 додато и 0 уклоњено
  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"
+	}
 }