Home > Mobile >  Why does my JAVA_HOME point to jre instead of jdk?
Why does my JAVA_HOME point to jre instead of jdk?

Time:02-18

I want to compile a project on my manjaro system using mvn and every time I get this error:

The JAVA_HOME environment variable is not defined correctly
This environment variable is needed to run this program
NB: JAVA_HOME should point to a JDK, not a JRE

Can somebody help?

CodePudding user response:

Found the Solution myself:

sudo archlinux-java set <target java package name>

For Example:

sudo archlinux-java set java-15-jdk

Found this here: https://www.debugpoint.com/2021/02/install-java-arch/

  • Related