Skip to content

Instantly share code, notes, and snippets.

@maslick
Last active October 25, 2015 09:24
Show Gist options
  • Save maslick/46dfb8800cd93299d04d to your computer and use it in GitHub Desktop.
Save maslick/46dfb8800cd93299d04d to your computer and use it in GitHub Desktop.
Install jdk 1.7 and mvn 3 on Ubuntu 14.04 LTS
#!/bin/bash
# Install OpenJDK 1.7.0_79
sudo apt-get install default-jdk -y
# Install Apache Maven 3.0.5
sudo apt-get install maven -y
@maslick
Copy link
Author

maslick commented Oct 25, 2015

Install jdk 1.8:

sudo apt-add-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

Also ensure your JAVA_HOME variable has been set to:

/usr/lib/jvm/java-8-oracle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment