Created
April 5, 2016 15:49
-
-
Save mohataher/4ff248435b5821d4769dbe3f1472c275 to your computer and use it in GitHub Desktop.
Set up a new Ubuntu instance on EC2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# install oracle 8 | |
# source: http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
# install maven and git | |
sudo apt-get install git maven |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment