Skip to content

Instantly share code, notes, and snippets.

@gkthiruvathukal
Created February 20, 2016 04:44
Show Gist options
  • Save gkthiruvathukal/0b1081ea75dbe710cc77 to your computer and use it in GitHub Desktop.
Save gkthiruvathukal/0b1081ea75dbe710cc77 to your computer and use it in GitHub Desktop.
Setting up Java 8 + SBT on Cloud 9
# Java 8
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
# https support (kind of lame)
sudo apt-get install apt-transport-https
# SBT
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
sudo apt-get update
sudo apt-get install sbt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment