chenjunjiedada opened a new issue #266: unit test testSpecialChars failed due to encoding issue URL: https://github.com/apache/incubator-iceberg/issues/266 The latest build (dc160c6964da829f64f0) failed on my dev machine which has `LANG` set to `en`. ``` > Task :iceberg-core:test org.apache.iceberg.avro.TestSchemaConversions > testSpecialChars FAILED java.lang.AssertionError at TestSchemaConversions.java:294 178 tests completed, 1 failed > Task :iceberg-core:test FAILED FAILURE: Build failed with an exception. ``` We should use for all projects. ``` apply plugin: 'java' compileJava {options.encoding = "UTF-8"} compileTestJava {options.encoding = "UTF-8"} ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
