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: _overviews/getting-started/intellij-track/getting-started-with-scala-in-intellij.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -13,28 +13,28 @@ In this tutorial, we'll see how to build a minimal Scala project using IntelliJ
13
13
IDE with the Scala plugin. In this guide, IntelliJ will download Scala for you.
14
14
15
15
## Installation
16
-
1. Make sure you have the Java 8 JDK (also known as 1.8)
17
-
* Run `javac -version` on the command line and make sure you see
18
-
`javac 1.8.___`
19
-
* If you don't have version 1.8 or higher, [install the JDK](https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
20
-
1. Next, download and install [IntelliJ Community Edition](https://www.jetbrains.com/idea/download/)
16
+
1. Make sure you have the Java 8 JDK (also known as 1.8) or newer:
17
+
* run `javac -version` on the command line to check the Java version,
18
+
* if you don't have version 1.8 or higher, [install the JDK](https://www.oracle.com/java/technologies/downloads/).
19
+
1. Next, download and install [IntelliJ Community Edition](https://www.jetbrains.com/idea/download/).
21
20
1. Then, after starting up IntelliJ, you can download and install the Scala plugin by following the instructions on
22
-
[how to install IntelliJ plugins](https://www.jetbrains.com/help/idea/installing-updating-and-uninstalling-repository-plugins.html) (search for "Scala" in the plugins menu.)
21
+
[how to install IntelliJ plugins](https://www.jetbrains.com/help/idea/managing-plugins.html) (search for "Scala" in the plugins menu.)
23
22
24
23
When we create the project, we'll install the latest version of Scala.
25
24
Note: If you want to open an existing Scala project, you can click **Open**
26
25
when you start IntelliJ.
27
26
28
27
## Creating the Project
29
-
1. Open up IntelliJ and click **File** => **New** => **Project**
30
-
1. On the left panel, select Scala. On the right panel, select IDEA.
31
-
1. Name the project **HelloWorld**
28
+
1. Open up IntelliJ and click **File** => **New** => **Project**.
29
+
1. Name the project **HelloWorld**.
30
+
1. Select **Scala** from the **Language** list.
31
+
1. Select **IntelliJ** from the **Build system** list.
32
32
1. Assuming this is your first time creating a Scala project with IntelliJ,
33
33
you'll need to install a Scala SDK. To the right of the Scala SDK field,
34
34
click the **Create** button.
35
35
1. Select the highest version number (e.g. {{ site.scala-version }}) and click **Download**. This might
36
36
take a few minutes but subsequent projects can use the same SDK.
37
-
1. Once the SDK is created, and you're back to the "New Project" window, click **Finish**.
37
+
1. Once the SDK is created, and you're back to the "New Project" window, click **Create**.
0 commit comments