You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/sbt.md
+18-13Lines changed: 18 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: SBT (Scala Build Tool)
2
+
title: sbt
3
3
4
4
author_primary: Jason Andrews
5
5
minutes_to_complete: 10
@@ -20,15 +20,20 @@ tool_install: true
20
20
weight: 1
21
21
---
22
22
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.
24
24
25
-
SBT is available for Windows, macOS, Linux and supports the Arm architecture.
25
+
`sbt` supports the Arm architecture is available for Windows, macOS, and Linux.
26
26
27
-
## What should I consider before installing SBT on Arm?
27
+
{{% notice Note %}}
28
+
When the project was created, it was called *Simple Build Tool*, but quickly evolved to *sbt*. Some have incorrectly redefined it to *Scala Build Tool*, which does not reflect the fact that sbt works with Java-only projects.
28
29
29
-
Before installing SBT, ensure you have Java installed on your system as SBT requires Java to run.
30
+
It is now called *sbt* in all lowercase letters, which emphasises the fact that it is not an acronym.{{% /notice %}}
30
31
31
-
Check the [Java install guide](/install-guides/java/) for more information.
32
+
## What should I consider before installing sbt on Arm?
33
+
34
+
Before installing `sbt`, ensure you have Java installed on your system as `sbt` requires Java to run.
35
+
36
+
See the [Java install guide](/install-guides/java/) for more information.
32
37
33
38
Confirm you are using an Arm machine by running:
34
39
@@ -43,11 +48,11 @@ aarch64
43
48
44
49
If you see a different result, you are not using an Arm computer running 64-bit Linux.
45
50
46
-
## How do I install SBT for Ubuntu on Arm?
51
+
## How do I install sbt for Ubuntu on Arm?
47
52
48
-
SBT can be installed using the Ubuntu package manager.
53
+
You can install `sbt` using the Ubuntu package manager.
49
54
50
-
First, you'll need to add the SBT repository:
55
+
First, you need to add the `sbt` repository:
51
56
52
57
```bash
53
58
sudo apt-get update
@@ -56,20 +61,20 @@ echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/a
0 commit comments