I get the error:

C:\dev\ws\springapp\build.xml:81: Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK. It is currently set to "C:\Program Files\Java\jre6"

But I have clearly set my JAVA_HOME to be C:\Program Files\Java\jdk1.6.0_14

Where is ANT getting this value?

link|improve this question

67% accept rate
1  
How did you set %JAVA_HOME%? Have you restarted Windows since you made the change? – mob Oct 13 '09 at 8:03
I would have thought restarting was not needed now that we have Windows Vista - how hard can it be to register a change with out a restart. But what do you know, that seemed to do the trick. – Ankur Oct 13 '09 at 8:41
3  
Indeed, you should not need to restart Windows in XP and above. But you have to spawn another console... – PhiLho Oct 13 '09 at 13:24
Windows isn't going to change the environment block of already running programs, when you set a new environment variable in the shell. – Rob K Nov 22 '10 at 14:38
Please have a look at Installing Apache Ant. ant.apache.org/manual/install.html – Aniruddha Jagtap Jan 30 at 20:28
feedback

8 Answers

up vote 9 down vote accepted

When you say you have "clearly set" JAVA_HOME to "C:\Program Files\Java\jdk1.6.0_14" - is that what you see when you run "set" from the command line? I believe Ant will guess at a value for JAVA_HOME if one isn't set at all... is it possible that you've set JAVAHOME instead of JAVA_HOME?

If it's nothing like that, I suggest you edit the ant.bat batch file (and whatever it calls - I can't remember whether it's convoluted or not offhand) to print out JAVA_HOME at the start and at various other interesting places.

link|improve this answer
feedback

It's also possible that you have included /bin in your JAVA_HOME setting, and Ant is adding /bin to it - thereby not finding any exe's. It's happened to me :}

link|improve this answer
feedback

I hope you are aware about System and User environmental variables. The user ones are preferred over system. If you have set your JAVA_HOME in system variables and if there is an entry for the same in user variables, then you will get the latter one only.

Right click on My computer, Go to properties, Select Advanced tab and click on Environmental variables to see the list of user and system environment variables.

link|improve this answer
feedback

In eclipse set the installed JRE setting to the JDK - in the project (project properties -> Java Build Path-> Libraries), or global default in preferences (Java->Installed JREs). The eclispe setting is stronger than the system variable.

link|improve this answer
feedback

The semicolon was throwing me off: I had JAVA_HOME set to "C:\jdk1.6.0_26;" instead of "C:\jdk1.6.0_26". I removed the trailing semicolon after following Jon Skeet's suggestion to examine the ant.bat file. This is part of that file:

if "%JAVA_HOME%" == "" goto noJavaHome
if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome

So the semi-colon wasn't being trimmed off the end, causing this to fail to find the file, therefore defaulting to "C:\Java\jre6" or something like that.

The confusing part is that the HowtoBuild page states to use the semi-colon, but that seems to break it.

link|improve this answer
+1 for fixing it for me – barry Dec 4 '11 at 14:33
feedback

To solve this problem add tools.jar file in window->preferences->ant-> runtime .

link|improve this answer
feedback

If you have JAVA_HOME set but there's a typo in it, you will also see the bogus reference to a jre6 path.

link|improve this answer
feedback

I was having a similar problem with a trailing semicolon. Removing it seemed to do the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.