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

update the scala nightly version name #14076

Merged
merged 1 commit into from
Feb 7, 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
8 changes: 4 additions & 4 deletions scala-package/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Also, add the dependency which corresponds to your platform to the ```dependenci
<dependency>
<groupId>org.apache.mxnet</groupId>
<artifactId>mxnet-full_2.11-linux-x86_64-gpu</artifactId>
<version>[1.5.0,)</version>
<version>[1.5.0-SNAPSHOT,)</version>
</dependency>
```

Expand All @@ -96,7 +96,7 @@ Also, add the dependency which corresponds to your platform to the ```dependenci
<dependency>
<groupId>org.apache.mxnet</groupId>
<artifactId>mxnet-full_2.11-linux-x86_64-cpu</artifactId>
<version>[1.5.0,)</version>
<version>[1.5.0-SNAPSHOT,)</version>
</dependency>
```

Expand All @@ -107,11 +107,11 @@ Also, add the dependency which corresponds to your platform to the ```dependenci
<dependency>
<groupId>org.apache.mxnet</groupId>
<artifactId>mxnet-full_2.11-osx-x86_64-cpu</artifactId>
<version>[1.5.0,)</version>
<version>[1.5.0-SNAPSHOT,)</version>
</dependency>
```

**Note:** ```<version>[1.5.0,)<\version>``` indicates that we will fetch packages with version 1.5.0 or higher. This will always ensure that the pom.xml is able to fetch the latest and greatest jar files from Maven Snapshot repository.
**Note:** ```<version>[1.5.0-SNAPSHOT,)</version>``` indicates that we will fetch packages with version 1.5.0 or higher. This will always ensure that the pom.xml is able to fetch the latest and greatest jar files from Maven Snapshot repository.

Build From Source
-----------------
Expand Down