You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indeed, I checked my locale related settings and found when unsetting LC_CTYPE the build works also on my box. Maybe with LC_CTYPE=C you may be able to reproduce the error on your side as well.
Compiling and building on Linux fails because of an UTF-8 encoded source file:
richtextfx/src/main/java/org/fxmisc/richtext/model/TextEditingArea.java
Adding the encoding options
build.gradle: compileJava.options.encoding = 'UTF-8'
richtextfx/build.gradle(javadoc section): options.addStringOption('encoding', 'UTF-8')
Resolved the issue in my environment.
The text was updated successfully, but these errors were encountered: