-
-
Save claritee/8b79a5c2fae944300031b8f91ce58eea to your computer and use it in GitHub Desktop.
installation script for Scala, SBT and JDK 8 on Ubuntu (Codenvy)
This file contains hidden or 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 | |
# installation script for Scala sbt on Ubuntu | |
# tested on Codenvy | |
sudo apt-get update | |
sudo apt-get install -y apt-transport-https | |
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 2EE0EA64E40A89B84B2DF73499E82A75642AC823 | |
sudo apt-get update | |
sudo apt-get install -y sbt | |
sudo apt-get install -y scala |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment