Repository: apex-core
Updated Branches:
  refs/heads/release-3.4 de967a4b5 -> 2388eba91


APEXCORE-669 updated to add the -B option to the mvn command to suppress the 
unnecessary and cryptic prompt.


Project: http://git-wip-us.apache.org/repos/asf/apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/apex-core/commit/2388eba9
Tree: http://git-wip-us.apache.org/repos/asf/apex-core/tree/2388eba9
Diff: http://git-wip-us.apache.org/repos/asf/apex-core/diff/2388eba9

Branch: refs/heads/release-3.4
Commit: 2388eba911cfa148b15f73cbded2474f33e8fe41
Parents: de967a4
Author: Sanjay Pujare <[email protected]>
Authored: Thu Mar 16 17:20:21 2017 -0700
Committer: Sanjay Pujare <[email protected]>
Committed: Thu Mar 16 17:20:21 2017 -0700

----------------------------------------------------------------------
 docs/apex_development_setup.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/apex-core/blob/2388eba9/docs/apex_development_setup.md
----------------------------------------------------------------------
diff --git a/docs/apex_development_setup.md b/docs/apex_development_setup.md
index 7251c79..0e3e569 100644
--- a/docs/apex_development_setup.md
+++ b/docs/apex_development_setup.md
@@ -23,7 +23,7 @@ After installing these tools, make sure that the directories 
containing the exec
 * **Linux and Mac** - Open a console/terminal window and enter the command 
`echo $PATH` to see the value of the `PATH` variable and verify that the above 
directories for Java, git, and maven executables are present.  If not, make 
sure software is downloaded and installed, and optionally PATH reference is 
added and exported  in a `~/.profile` or `~/.bash_profile`.  For example to add 
maven located in `/sfw/maven/apache-maven-3.3.3` to PATH add the line: `export 
PATH=$PATH:/sfw/maven/apache-maven-3.3.3/bin`
 
 
-Confirm by running the following commands and comparing with output that show 
in the table below:
+Confirm by running the following commands and comparing with output shown in 
the table below:
 
 <table>
 <colgroup>
@@ -65,12 +65,12 @@ 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.
 
 
-* **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. 
+* **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 the project directory named `myapexapp` will 
be generated.  The caret (^) at the end of some lines indicates that a 
continuation line follows.
 
         @echo off
         @rem Script for creating a new application
         setlocal
-        mvn archetype:generate ^
+        mvn -B archetype:generate ^
          -DarchetypeGroupId=org.apache.apex ^
          -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=3.4.0 ^
          -DgroupId=com.example -Dpackage=com.example.myapexapp 
-DartifactId=myapexapp ^
@@ -80,7 +80,7 @@ After development tools are configured, you can now use the 
maven archetype to c
 
 * **Linux** - Execute the lines below in a terminal window.  New project will 
be created in the curent working directory.  The backslash (\\) at the end of 
the lines indicates continuation.
 
-        mvn archetype:generate \
+        mvn -B archetype:generate \
          -DarchetypeGroupId=org.apache.apex \
          -DarchetypeArtifactId=apex-app-archetype -DarchetypeVersion=3.4.0 \
          -DgroupId=com.example -Dpackage=com.example.myapexapp 
-DartifactId=myapexapp \

Reply via email to