APEXCORE-803 Replace outdated archetype version number.
diff --git a/docs/apex_development_setup.md b/docs/apex_development_setup.md
index 7e9b257..f520ba7 100644
--- a/docs/apex_development_setup.md
+++ b/docs/apex_development_setup.md
@@ -62,7 +62,7 @@
 Creating New Apex Project
 -------------------------------------------------------------------------------
 
-After development tools are configured, you can now use the maven archetype to create a basic Apache Apex project.  **Note:** When executing the commands below, replace `3.4.0` by [latest available version](http://apex.apache.org/downloads.html) of Apache Apex.
+After development tools are configured, you can now use the maven archetype to create a basic Apache Apex project.  **Note:** When executing the commands below, you can optionally replace `RELEASE` with a [specific version](http://apex.apache.org/downloads.html) of Apache Apex.
 
 
 * **Windows** - Create a new Windows command file called `newapp.cmd` by copying the lines below, and execute it.  When you run this file, the properties will be displayed and you will be prompted with `` Y: :``; just press **Enter** to complete the project generation.  The caret (^) at the end of some lines indicates that a continuation line follows. 
@@ -72,7 +72,7 @@
         setlocal
         mvn archetype:generate ^
          -DarchetypeGroupId=org.apache.apex ^
-         -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=3.4.0 ^
+         -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=RELEASE ^
          -DgroupId=com.example -Dpackage=com.example.myapexapp -DartifactId=myapexapp ^
          -Dversion=1.0-SNAPSHOT
         endlocal
@@ -82,7 +82,7 @@
 
         mvn archetype:generate \
          -DarchetypeGroupId=org.apache.apex \
-         -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=3.4.0 \
+         -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=RELEASE \
          -DgroupId=com.example -Dpackage=com.example.myapexapp -DartifactId=myapexapp \
          -Dversion=1.0-SNAPSHOT
 
@@ -159,6 +159,3 @@
 -------------------------------------------------------------------------------
 
 To jump-start development with Apex, please refer to the [Downloads](https://apex.apache.org/downloads.html) section of the Apache Apex website, which provides a list of 3rd party Apex binary packages and sandbox environments.
-
-
-