How install SBT(Buil Tool for Scala) in Linux

21:49 JPCO 0 Comments




sbt is a build tool for Scala. It requires Java 1.6 or later. It tools is similar to make, Maven or Ant .

Here i will display the linux commands to install sbt.


Red Hat Enterprise Linux and other RPM-based distributions.
curl https://bintray.com/sbt/rpm/rpm | sudo tee /etc/yum.repos.d/bintray-sbt-rpm.repo
sudo yum install sbt

Ubuntu and other Debian-based distributions.
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






you can find more information in http://www.scala-sbt.org/

0 comentarios: