Scala

From Bitpost wiki
Revision as of 16:20, 13 June 2016 by M (talk | contribs) (Created page with "=== Installation === Start with [http://www.scala-sbt.org/download.html sbt]: echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Installation

Start with 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 2EE0EA64E40A89B84B2DF73499E82A75642AC823
sudo apt-get update
sudo apt-get install sbt

Then if you have a project already, use sbt and let that pull down all the dependencies:

cd ~/development/causam/git/causam-north-poller-scala
sbt compile