On 3/21/2015 10:49 AM, siddharth gupta wrote: > *Output for echo %JAVA_HOME%:* > > C:\Program Files\Java\jdk1.7.0_55 > > Few hours back on knowing that I am using java 7 instead of java 8 i > updated my java. > Then checked the version through cmd which showed 1.8 > > Do I need to download java 8 again and configure it ? Why didn't the > update work ?
Although it appears that your system path points at Java 1.8, your JAVA_HOME environment variable is used by the build system to find and run the JDK. Because of JAVA_HOME, the 1.7 JDK will be used. You will need to either update JAVA_HOME to point at the 1.8 JDK or get rid of it entirely. Thanks, Shawn --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
