Hi mame,
I came across some other answers that suggest maybe the problem is not that you're using OpenJDK, but just that you've got a later Java version. Can you try with OpenJDK 8?
Debian, Ubuntu, etc.
On the command line, type:
==========================
$ sudo apt-get install openjdk-8-jre
The openjdk-8-jre package contains just the Java Runtime Environment. If you want to develop Java programs then please install the openjdk-8-jdk package.
Fedora, Oracle Linux, Red Hat Enterprise Linux, etc.
====================================================
On the command line, type:
$ su -c "yum install java-1.8.0-openjdk"
The java-1.8.0-openjdk package contains just the Java Runtime Environment. If you want to develop Java programs then install the java-1.8.0-openjdk-devel package.
https://openjdk.java.net/install/