I have my JAVA_HOME set to

C:\Program Files (x86)\Java\jdk1.6.0_18

After I run maven install I get this message from eclipse:

Reason:

Unable to locate the Javac Compiler in:
  C:\Program Files (x86)\Java\jre6\..\lib\tools.jar
Please ensure you are using JDK 1.4 or above and
not a JRE (the com.sun.tools.javac.Main class is required).
In most cases you can change the location of your Java
installation by setting the JAVA_HOME environment variable.

I'm certain that this is the tricky part

Please ensure you are using JDK 1.4 or above and not a JRE

When I run configuration its set to JRE6, how do I change it to JDK 1.6 which I have already installed

EDIT

I even tried to modify the plugin :

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.0.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <executable>C:\Program Files (x86)\Java\jdk1.6.0_18\bin</executable>
                </configuration>
            </plugin>

Still I get the same error

Maybe I forgot to say I use eclipse maven plugin .. how can I change from JRE to JDK in eclipse ?

link|improve this question

Have you double-checked using the command-line set command to make sure JAVA_HOME is set to what you think it is? – Powerlord Feb 8 '10 at 15:56
I'm using java on daily basis .. everything works fine here it is : java -version .6.0_18-ea" time Environment (build 1.6.0_18-ea-b04) ) Client VM (build 16.0-b11, mixed mode, sharing) – Gandalf StormCrow Feb 8 '10 at 15:58
1  
Set <fork>true</fork> when setting the executable. – Robin Feb 8 '10 at 16:01
That doesn't actually tell us which Java install java -version is running; it could be the JRE or JDK install. javac -version would be a little more useful. However, even then if PATH is correct and JAVA_HOME is wrong, these would still show up how you would expect. – Powerlord Feb 8 '10 at 16:03
Also, executable should be ...\bin\javac, you have to specify the actual executable, not just the path. – Robin Feb 8 '10 at 16:15
feedback

15 Answers

up vote 26 down vote accepted

You could try updating the JDK Eclipse is using, as follows:

Add and set the JRE in Window->Preferences...->Java->Installed JREs:

JRE type: Standard VM JRE 
Name: jdk1.6.0_18
JRE home directory: C:\Program Files (x86)\Java\jdk1.6.0_18

If this is not the case, it's possible that the brackets and spaces in the JAVA_HOME path are causing issues. Try copying your JDK to a different location and updating your JAVA_HOME.

link|improve this answer
It is indeed the first part of your question, JAVA_HOME thing is ok – Gandalf StormCrow Feb 8 '10 at 16:43
10  
For me an extra step was needed: going to the properties of said project->java build path->libraries->select "JRE System Library", click Edit and select "Workspace default JRE" – maayank Jan 30 '11 at 9:56
was not enough for me, had to edit eclipse.ini. I believe there is a bug. – ruhsuzbaykus Jun 30 '11 at 14:21
feedback

eclipse.ini needs the vm argument to point to your jdk location.

Edit the eclipse.ini file to have this -

-vm C:\Program Files\Java\jdk1.6.0_06

This ensures that Eclipse would be running off the JDK and not any default JRE on your machine.

link|improve this answer
This fixed my problem. From researching on the web, it looks like the Maven uses JAVA_HOME, but the Maven Plugin knows nothing about JAVA_HOME and instead defaults to the VM used to start Eclipse. – jnosek Jul 14 '11 at 15:18
feedback

I had EXACT the same problem! Been searching and searching for days because all the babble about "put the -vm c:\program files\java\jdkxxxxx\bin" in the ini ar as argument for a shortcurt did NOT AT ALL heklp! (Do I sound frustrated? Believe me, that's an understatement! I am simply furious because I lost a week trying to make Maven reliable!)

I had very unpredictable behavior. Sometimes it compiled, sometimes not. If I did a maven clean, it could not find the compiler and failed. If I then changed something in the build path, it suddenly worked again!!

Until I went to window -> preferences -> java -> installed JRE's. I added a new JRE using the location of the JDK and then removed the JRE. Suddenly maven ran stable!

Maybe this is worth putting in letters with font-size 30 or so in the apache manual? With all due respect, this is simply outrageous for the java community! I can't imagine how many days were lost by all these people, trying to work out their problems of this kind! I cannot possibly imagine this is released as a final version. I personally would not even dare to release such a thing under the name BETA software...

Kind regards either way.... After a week of tampering I can finally start developing. I hope my boss won't find out about this. It took me lots of effort to convince him NOT to go to .NET and I already feel sorry about it.

link|improve this answer
1  
bottom line, use it from console not from eclipse you won't have this kind of issues, that is what I've realized after few months of using it, now pretty comfortable with maven – Gandalf StormCrow May 11 '10 at 12:43
feedback

It sounds like Maven is using the JRE, not the JDK. Perhaps you installed Maven before installing the JDK?

Check the settings files. There are 3 in total, system, user, and project. Its most likely in the installation config ($M2_HOME/conf/settings.xml) or, possibly, the per-user config (${user.dir}/.m2/settings.xml).

link|improve this answer
feedback

I got the same problem using Run as -> Maven install in Eclipse. JAVA_HOME and eclipse.ini were OK and pointing to my latest JDK. But m2clipse used JRE. Using mvn install outside of Eclipse worked fine! In my case I solved the problem as follows: 1. Navigate in Eclipse: Window -> Preferences -> Java -> Installed JREs 2. There were two inactive entries for a JRE and JDK. The active one was the latest installed JDK. Delete all entries but the one maven should use.

I think maven doesn't take into acount which one is active...

link|improve this answer
feedback

Base on http://maven.apache.org/plugins/maven-compiler-plugin/examples/compile-using-different-jdk.html, you will have to set the fork to true in your pom.xml.

link|improve this answer
This solved the problem for me, thanks. – Chin Boon Nov 7 '11 at 4:46
feedback

Window -> Preferences -> Java -> installed JREs -> Execution Enviroments -> click the checkbox on the right side

link|improve this answer
feedback

Setting Fork to true resolved the issue for me.

<configuration>
<fork>true</fork>
<source>1.6</source>
<target>1.6</target>
</configuration>

Thank you very much, Sam Yang..you made my day

link|improve this answer
feedback

I would guess that the location of the compiler is defined in a pom for the compiler plugin to be in the jre location displayed, instead of the jdk location you have JAVA_HOME pointing to.

link|improve this answer
@Robin Where exactly should I look for that ? the pom looks fine to me <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> – Gandalf StormCrow Feb 8 '10 at 15:32
If there is not an <executable> defined, then this is not what is causing your problem, unless the pom you are looking at inherits from a parent pom which has it defined. – Robin Feb 8 '10 at 15:42
I defined the executable already I edited my question – Gandalf StormCrow Feb 8 '10 at 16:00
When defining the executable, you also have to set <fork> to true. – Robin Feb 8 '10 at 16:00
feedback

Right click on Project -> Properties -> Java Build Path. Select the JRE System Path -> Edit. Select the Workspace Default JRE, and point it to JDK > 1.4

link|improve this answer
feedback

The solution is simple, some times the eclipse windows -> preference -> java -> Installed JREs pointing to C:\Program files\Java\jre, when i changed it to C:\Program files\Java\JDK 6.0\jre it is working 100%.

link|improve this answer
feedback

You need to indicate de JAVA_HOME in mvn.ini (it´s in maven folder /bin), and your problem disappear

link|improve this answer
feedback

If you set the JAVA_HOME, and the problem persists try the following. (i had the same problem, on a fresh installed pc.)

Assuming you are using Eclipse.

  • Open Window - preferences - java - installed jre's remove all you have there, add the desired you want to use (JDK, no JRE!)
  • In the same window open maven - installations, add the mave installation you downloaded and extracted somewhere. (DO NOT USE the embedded maven installation, it has some known bugs)

Thats all. your project will not suffer from sutch problems. Hope helps.

link|improve this answer
feedback

You can also make sure that Eclipse has all of the updated changes. To do this, right-click your project and then press the "Refresh" menu item.

link|improve this answer
feedback

I just install maven 3.0.4, set M2_HOME, M2 and JAVA_HOME accordingly. I then run command mvn archetype:generate...., then run command mvn compile. I got failed message such as: maven unable to locate javac compiler. On my computer, I have default jre install at c:\program files\java\jre.1.6. And I have the other c:\java\jdk1.6 and JAVA_HOME set to this c:\java\jdk1.6. I don't see anything wrong with my setting. After searching and searching, I decided to look into mvn.bat, I echo %JAVA_HOME% every step and it displays correctly as C:\java\jdk1.6 but when I run command : mvn --version, it displays Java home: c:\program files\java\jre1.1.6.

Finally, I found out that I just need to set -Djava.home=c:\java\jdk1.6 as in the command below, and working fine now:

%MAVEN_JAVA_EXE% %MAVEN_OPTS% -classpath %CLASSWORLDS_JAR% "-Dclassworlds.conf=%M2_HOME%\bin\m2.conf" "-Djava.home=%JAVA_HOME%" "-Dmaven.home=%M2_HOME%" %CLASSWORLDS_LAUNCHER% %MAVEN_CMD_LINE_ARGS%

Hope this help. Just note: this is for mvn on command line not with Eclipse.

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.