diff --git a/docs/install/index.md b/docs/install/index.md
index eab1c82d7a88..f1e959eaf34c 100644
--- a/docs/install/index.md
+++ b/docs/install/index.md
@@ -505,7 +505,7 @@ You can use the Maven packages defined in the following dependency to include MX
You can use the Maven packages defined in the following dependency to include MXNet in your Java project. The Java API is provided as a subset of the Scala API and is intended for inference only. Please refer to the MXNet-Java setup guide for a detailed set of instructions to help you with the setup process.
-
+
```html
@@ -522,7 +522,7 @@ You can use the Maven packages defined in the following dependency to include MX
You can use the Maven packages defined in the following dependency to include MXNet in your Java project. The Java API is provided as a subset of the Scala API and is intended for inference only. Please refer to the MXNet-Java setup guide for a detailed set of instructions to help you with the setup process.
-
+
```html
@@ -810,7 +810,7 @@ Not available at this time.
You can use the Maven packages defined in the following dependency to include MXNet in your Java project. The Java API is provided as a subset of the Scala API and is intended for inference only. Please refer to the MXNet-Java setup guide for a detailed set of instructions to help you with the setup process.
-
+
```html
diff --git a/docs/install/java_setup.md b/docs/install/java_setup.md
index 569f439f8b02..ce4a4abf80b7 100644
--- a/docs/install/java_setup.md
+++ b/docs/install/java_setup.md
@@ -35,21 +35,15 @@ The following instructions are provided for macOS and Ubuntu. Windows is not yet
brew update
brew tap caskroom/versions
brew cask install java8
-brew install opencv
brew install maven
```
**Ubuntu Steps**
-These scripts will install Maven and its dependencies. You will be running the Scala scripts because the MXNet-Java project has a dependency on the MXNet-Scala project.
+Please run the following lines:
```bash
-wget https://raw.githubusercontent.com/apache/incubator-mxnet/master/ci/docker/install/ubuntu_core.sh
-wget https://raw.githubusercontent.com/apache/incubator-mxnet/master/ci/docker/install/ubuntu_scala.sh
-chmod +x ubuntu_core.sh
-chmod +x ubuntu_scala.sh
-sudo ./ubuntu_core.sh
-sudo ./ubuntu_scala.sh
+sudo apt-get install openjdk-8-java maven
```
**Step 2.** Run the demo MXNet-Java project.
@@ -58,25 +52,14 @@ Go to the [MXNet-Java demo project's README](https://github.com/apache/incubator
#### Maven Repository
-MXNet-Java can be easily included in your Maven managed project. The Java packages are currently available as nightly builds on Maven. Add the following Maven repository to your `pom.xml` to fetch the Java packages :
-
-```html
-
-
- Apache Snapshot
- https://repository.apache.org/content/groups/snapshots
-
-
-```
-
-Also, add the dependency which corresponds to your platform to the `dependencies` tag :
+MXNet-Java can be easily included in your Maven managed project. The Java packages are currently available on Maven. Add the dependency which corresponds to your platform to the `dependencies` tag :
**Linux CPU**
```html
org.apache.mxnet
mxnet-full_2.11-linux-x86_64-cpu
- 1.4.0-SNAPSHOT
+ 1.4.0
```
@@ -85,7 +68,7 @@ Also, add the dependency which corresponds to your platform to the `dependencies
org.apache.mxnet
mxnet-full_2.11-linux-x86_64-gpu
- 1.4.0-SNAPSHOT
+ 1.4.0
```
@@ -94,12 +77,11 @@ Also, add the dependency which corresponds to your platform to the `dependencies
org.apache.mxnet
mxnet-full_2.11-osx-x86_64-cpu
- 1.4.0-SNAPSHOT
+ 1.4.0
```
-
-The official Java Packages will be released with the release of MXNet 1.4 and will be available on [MXNet Maven package repository](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.mxnet%22).
+The official Java Packages have been released as part of MXNet 1.4 and are available on the [MXNet Maven package repository](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.mxnet%22).
### Eclipse IDE Support
diff --git a/docs/tutorials/java/mxnet_java_on_intellij.md b/docs/tutorials/java/mxnet_java_on_intellij.md
index ce84788c846e..d95aabdb598a 100644
--- a/docs/tutorials/java/mxnet_java_on_intellij.md
+++ b/docs/tutorials/java/mxnet_java_on_intellij.md
@@ -102,27 +102,16 @@ Set the project's location. The rest of the settings can be left as their defaul
After clicking Finish, you will be presented with the project's first view.
The project's `pom.xml` will be open for editing.
-**Step 3.** The Java packages are currently available as nightly builds on Maven. Add the following Maven repository to your `pom.xml` to fetch the Java packages :
-
-```html
-
-
- Apache Snapshot
- https://repository.apache.org/content/groups/snapshots
-
-
-```
-
-Also, add this under the `dependencies` tag :
+**Step 3.** The Java packages are currently available on Maven. Add the following under the `dependencies` tag :
```html
org.apache.mxnet
mxnet-full_2.11-osx-x86_64-cpu
- 1.4.0-SNAPSHOT
+ 1.4.0
```
-The official Java Packages will be released with the release of MXNet 1.4 and will be available on [MXNet Maven package repository](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.mxnet%22).
+The official Java Packages have been released as part of MXNet 1.4 and are available on the [MXNet Maven package repository](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.mxnet%22).
Note :
- Change the osx-x86_64 to linux-x86_64 if your platform is linux.