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.
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.