We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to: https://phoenicisorg.github.io/phoenicis/Developers/build/#ubuntu-18041810-and-linux-mint-19
wget https://download.java.net/java/GA/jdk11/13/GPL/openjdk-11.0.1_linux-x64_bin.tar.gz -O /tmp/openjdk-11+28_linux-x64_bin.tar.gz sudo tar xfvz /tmp/openjdk-11+28_linux-x64_bin.tar.gz --directory /usr/lib/jvm export JAVA_HOME="/usr/lib/jvm/jdk-11"
should work.
Unfortunately my system gave me an error message when trying to run
mvn clean package
that JAVA_HOME hadn't been set correctly.
The actual export command of JAVA_HOME variable had to be set to export JAVA_HOME="/usr/lib/jvm/jdk-11.0.1/" which includes the 0.1 at the end.
With this the compile runs fine on my Slackware system.
Also bumping the Ubuntu version to 22.04 LTS might make sense. Is there a git-repository for the documentation where I could contribute?
The text was updated successfully, but these errors were encountered:
Yes, it's https://github.com/PhoenicisOrg/phoenicis/tree/master/docs/_docs.
Sorry, something went wrong.
No branches or pull requests
Expected behavior
According to:
https://phoenicisorg.github.io/phoenicis/Developers/build/#ubuntu-18041810-and-linux-mint-19
should work.
Actual behavior
Unfortunately my system gave me an error message when trying to run
mvn clean package
that JAVA_HOME hadn't been set correctly.
The actual export command of JAVA_HOME variable had to be set to
export JAVA_HOME="/usr/lib/jvm/jdk-11.0.1/"
which includes the 0.1 at the end.
With this the compile runs fine on my Slackware system.
Also bumping the Ubuntu version to 22.04 LTS might make sense. Is there a git-repository for the documentation where I could contribute?
The text was updated successfully, but these errors were encountered: