You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2016/05/12 22:29:03 UTC

svn commit: r1743588 - in /maven/site/trunk/content/apt/guides: getting-started/windows-prerequisites.apt mini/guide-encryption.apt

Author: michaelo
Date: Thu May 12 22:29:03 2016
New Revision: 1743588

URL: http://svn.apache.org/viewvc?rev=1743588&view=rev
Log:
Small Windows-related doc fixes

Modified:
    maven/site/trunk/content/apt/guides/getting-started/windows-prerequisites.apt
    maven/site/trunk/content/apt/guides/mini/guide-encryption.apt

Modified: maven/site/trunk/content/apt/guides/getting-started/windows-prerequisites.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/getting-started/windows-prerequisites.apt?rev=1743588&r1=1743587&r2=1743588&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/getting-started/windows-prerequisites.apt (original)
+++ maven/site/trunk/content/apt/guides/getting-started/windows-prerequisites.apt Thu May 12 22:29:03 2016
@@ -54,12 +54,12 @@ java -version
 * Maven Unpacked
 
   You need to unpack the Maven distribution. Don't unpack it in the middle of your source code; pick some location
-  (with no spaces in the path!) and unpack it there. Let's assume that the path is <<<c:\apache-maven-3.0.5>>>.
+  (with no spaces in the path!) and unpack it there. Let's assume that the path is <<<$\{maven.home\}>>>.
 
 * Maven in PATH
 
-  You run Maven by invoking a command-line tool: <<<mvn.bat>>> from the <<<bin>>> directory of the Maven. To do this conveniently,
-  <<<c:\apache-maven-3.0.5\bin>>> must be in your PATH, just like the J2SE SDK commands. You can add directories to your PATH
+  You run Maven by invoking a command-line tool: <<<mvn.cmd>>> from the <<<bin>>> directory of the Maven. To do this conveniently,
+  <<<$\{maven.home\}\bin>>> must be in your PATH, just like the Java SDK commands. You can add directories to your <<<PATH>>>
   in the control panel; the details vary by Windows version.
 
 * Firewalls and Anti-virus

Modified: maven/site/trunk/content/apt/guides/mini/guide-encryption.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/mini/guide-encryption.apt?rev=1743588&r1=1743587&r2=1743588&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/mini/guide-encryption.apt (original)
+++ maven/site/trunk/content/apt/guides/mini/guide-encryption.apt Thu May 12 22:29:03 2016
@@ -228,13 +228,13 @@ jSMOWnoPFgsHVpMvz5VrIt5kRbzGpI8u+{EF1iFQ
   The following example will not work on Windows:
 
 +----+
-mvn.bat --encrypt-master-password a!$%^b
+mvn --encrypt-master-password a!$%^b
 +----+
   
   whereas the following will work on Windows:
 
 +----+
-mvn.bat --encrypt-master-password "a!$%^b"
+mvn --encrypt-master-password "a!$%^b"
 +----+
 
   If you are on a linux/unix platform you should use single quotes for the above