When I previously did some updates to the Java Installers for Apache Maven, I noticed that, when I was testing the two versions, it often didn’t update the Environment variables. At first, I put it down to the fact that the variables for one version where there and maybe they get in the way of Read More
Apache Maven Java Error – was unexpected at this time
While testing changes to the Maven Installer I had this strange error. Simple enough – I had quoted the value for the JAVA_HOME variable. So I had: JAVA_HOME=”C:\Program Files\Java\jdk1.7.0_07″ Removed the quotes and all worked fine: JAVA_HOME=C:\Program Files\Java\jdk1.7.0_07 Hope this helps.