I got this building
Reason: The system default encoding must be UTF-8 (add '-Dfile.encoding=UTF-8' the JVM command line). Current value=US-ASCII
The solution was to execute the following before building
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
Maybe the build pipeline could be adjusted to include this?
I got this building
Reason: The system default encoding must be UTF-8 (add '-Dfile.encoding=UTF-8' the JVM command line). Current value=US-ASCIIThe solution was to execute the following before building
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"Maybe the build pipeline could be adjusted to include this?