11---
2- title : SBT (Scala Build Tool)
2+ title : sbt
33
44author_primary : Jason Andrews
55minutes_to_complete : 10
@@ -20,13 +20,13 @@ tool_install: true
2020weight : 1
2121---
2222
23- The Scala Build Tool, [ SBT ] ( https://www.scala-sbt.org/ ) , is a popular build tool for Scala and Java projects.
23+ [ sbt ] ( https://www.scala-sbt.org/ ) is a popular build tool for Scala and Java projects.
2424
25- SBT is available for Windows, macOS, Linux and supports the Arm architecture.
25+ sbt is available for Windows, macOS, Linux and supports the Arm architecture.
2626
27- ## What should I consider before installing SBT on Arm?
27+ ## What should I consider before installing sbt on Arm?
2828
29- Before installing SBT , ensure you have Java installed on your system as SBT requires Java to run.
29+ Before installing sbt , ensure you have Java installed on your system as sbt requires Java to run.
3030
3131Check the [ Java install guide] ( /install-guides/java/ ) for more information.
3232
@@ -43,11 +43,11 @@ aarch64
4343
4444If you see a different result, you are not using an Arm computer running 64-bit Linux.
4545
46- ## How do I install SBT for Ubuntu on Arm?
46+ ## How do I install sbt for Ubuntu on Arm?
4747
48- SBT can be installed using the Ubuntu package manager.
48+ sbt can be installed using the Ubuntu package manager.
4949
50- First, you'll need to add the SBT repository:
50+ First, you will need to add the sbt repository:
5151
5252``` bash
5353sudo apt-get update
@@ -56,14 +56,14 @@ echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/a
5656curl -sL " https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x99E82A75642AC823" | sudo apt-key add
5757```
5858
59- Next, install SBT :
59+ Next, install sbt :
6060
6161``` bash
6262sudo apt-get update
6363sudo apt-get install sbt -y
6464```
6565
66- Confirm the SBT and Java installation by running the SBT version command:
66+ Confirm the sbt and Java installation by running the sbt version command:
6767
6868``` bash
6969sbt --version
@@ -78,4 +78,4 @@ sbt version in this project: 1.10.7
7878sbt script version: 1.10.7
7979```
8080
81- You are ready to use the Scala Build Tool, ` sbt ` .
81+ You are ready to use sbt.
0 commit comments