Skip to content

Commit 7c234b0

Browse files
authored
Merge pull request #3120 from gkepka/update-getting-started-with-intellij
Update Getting Started with Scala in IntelliJ
2 parents 9c755e6 + 4bafe8a commit 7c234b0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Diff for: _overviews/getting-started/intellij-track/getting-started-with-scala-in-intellij.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ In this tutorial, we'll see how to build a minimal Scala project using IntelliJ
1313
IDE with the Scala plugin. In this guide, IntelliJ will download Scala for you.
1414

1515
## 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/).
2120
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.)
2322

2423
When we create the project, we'll install the latest version of Scala.
2524
Note: If you want to open an existing Scala project, you can click **Open**
2625
when you start IntelliJ.
2726

2827
## 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.
3232
1. Assuming this is your first time creating a Scala project with IntelliJ,
3333
you'll need to install a Scala SDK. To the right of the Scala SDK field,
3434
click the **Create** button.
3535
1. Select the highest version number (e.g. {{ site.scala-version }}) and click **Download**. This might
3636
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**.
3838

3939

4040
## Writing code

0 commit comments

Comments
 (0)