Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Modified code block formatting

...

In order to get the proprietary Oracle Java 8 packages, run the following:

 

Code Block
languagebash
sudo apt-get install python-software-properties (This may be necessary to use the add-apt-repository command)
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo update-java-alternatives -s java-8-oracle

...


To set the JAVA_HOME environment variable for the installed JDK:

Code Block
languagebash
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
echo "export JAVA_HOME=$JAVA_HOME" | sudo tee -a /etc/environment

 

Git CLI

Run the following:

Code Block
languagebash
sudo apt-get install git

Apache Maven

Run the following:

Code Block
languagebash
sudo apt-get install maven

Apache Tomcat

Run the following:

Code Block
languagebash
sudo apt-get install tomcat7 tomcat7-admin

 

...