Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

update the scala installation tutorial on intellij #14033

Merged
merged 3 commits into from
Feb 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/tutorials/scala/mxnet_scala_on_intellij.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ mxnet
```
**ArtifactId**
```
ArtifactId: scalaMXNet
scalaMXNet
```
**Version**
```
Expand Down Expand Up @@ -211,6 +211,7 @@ The project's `pom.xml` will be open for editing.
<dependency>
<groupId>org.apache.mxnet</groupId>
<artifactId>mxnet-full_2.11-osx-x86_64-cpu</artifactId>
<version>[1.3.1,)</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
Expand Down Expand Up @@ -324,7 +325,7 @@ log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} [%t]

**Step 6.** Build the project:
- To build the project, from the menu choose Build, and then choose Build Project.

* Note that if you run into ```bad option: '-make:transitive'```, please remove ```<arg>-make:transitive</arg>``` from `pom.xml` and `<parameter value="-make:transitive" />` from `.idea/scala_compiler`.

**Step 7.** Run the Hello World App:

Expand Down