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 1 commit
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 follow the [how to solve scalac-error-bad-option-maketransitive](https://stackoverflow.com/questions/35016945/scalac-error-bad-option-maketransitive-on-mvn-package-via-command-line)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What change from the stackoverflow page did you apply to solve the error? Can you either apply it directly to the POM in Step 3 so users following the tutorial don't have to worry about it or copy the solution you found directly into the tutorial?


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

Expand Down