فهرست منبع

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"
+	}
 }