They probably plan to stick with Java 10 for a while because if one read
the latest changelog, it's stated they backported security fixes from
Java 11.0.1 so it doesn't make sense to do that and then to upgrade to
the full Java 11.0.1 soon after: https://launchpad.net/ubuntu/+source
/openjdk-lts/10
The workaround using OpenJDK instead is equally simple:
wget
https://download.java.net/java/GA/jdk11/13/GPL/openjdk-11.0.1_linux-x64_bin.tar.gz
tar xzv -C /opt -f openjdk-11.0.1_linux-x64_bin.tar.gz
update-alternatives --install /usr/bin/java java /opt/jdk-11.0.1/bin/java 1
--
You received this
This easy workaround can be used until this issue is fixed:
1) Download jdk-11.0.1_linux-x64_bin.deb here:
https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html
2) Run these two commands:
apt install ./jdk-11.0.1_linux-x64_bin.deb
update-alternatives --install /usr/b