Explorar el Código

Use correct encoding for compilation

Lars Grefer hace 6 años
padre
commit
1048601f3d
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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"
+	}
 }