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 2023/02/14 09:51:09 UTC

[maven-site] 01/01: Remove broken tips

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch remove-broken-tips
in repository https://gitbox.apache.org/repos/asf/maven-site.git

commit 77e6a0c6bf5b494fd3ac217d09d9d04c956d9e96
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Tue Feb 14 10:50:57 2023 +0100

    Remove broken tips
---
 content/markdown/install.md.vm | 33 ---------------------------------
 1 file changed, 33 deletions(-)

diff --git a/content/markdown/install.md.vm b/content/markdown/install.md.vm
index 0812d95e..6c1d059c 100644
--- a/content/markdown/install.md.vm
+++ b/content/markdown/install.md.vm
@@ -50,36 +50,3 @@ Default locale: en_US, platform encoding: UTF-8
 OS name: "mac os x", version: "10.8.5", arch: "x86_64", family: "mac"
 ```
 
-Windows Tips
------
-
-* Check environment variable value e.g.
-
-```cmd
-echo %JAVA_HOME% 
-C:\Program Files\Java\jdk1.7.0_51
-```
-
-* Adding to `PATH`:  Add the unpacked distribution's bin directory to your user PATH environment variable 
-by opening up the system properties (WinKey + Pause), selecting the "Advanced" tab, and 
-the "Environment Variables" button, then adding or selecting the <i>PATH</i>
-variable in the user variables with the value `C:\Program Files\apache-maven-${currentStableVersion}\bin`.
-The same dialog can be used to set `JAVA_HOME` to the location of your JDK, e.g. `C:\Program Files\Java\jdk1.7.0_51`
-
-* Open a new command prompt (Winkey + R then type `cmd`) and run `mvn -v` to verify the installation.
-
-Unix-based Operating System (Linux, Solaris and Mac OS X) Tips
------
-
-* Check environment variable value
-
-```sh
-echo $JAVA_HOME
-/Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home
-```
-
-* Adding to `PATH`
-
-```sh
-export PATH=/opt/apache-maven-${currentStableVersion}/bin:$PATH
-```