I am trying to set up some path using environment variable. I added an environment variable \"MAVEN_HOME\" with the value \"C:\\maven\". Then in the path I added \"%MAVEN_HO
Check if there is a space character between the previous path and the next:
Incorrect: c:\path1; c:\Maven\bin\; c:\path2\
c:\path1; c:\Maven\bin\; c:\path2\
Correct: c:\path1;c:\Maven\bin\;c:\path2\
c:\path1;c:\Maven\bin\;c:\path2\