I imported a Maven project and it used Java 1.5 even though I have 1.6 configured as my Eclipse default (Preferences->Java->Installed JREs). When I changed the Maven project to use the 1.6 JRE it still had the build errors left over from when the project was using Java 1.5 (I described these build errors earlier in this question.)

I'm going to delete the project and try again but I want to make sure this time that it uses Java 1.6 from the start to see if this eliminates the build problems.

How do I make sure the project uses Java 1.6 when I import it?

link|improve this question

1  
m2eclipse ignores what you configure for the Eclipse default. It will always use 1.5 by default. However in your case the project uses the maven-compiler-plugin and sets the version explicitly to 1.5. You will need to change that in the pom and update the project configuration to change the version. However I already tried this and it didn't work for me. I'm pretty sure that's not the problem despite what others said in your other question. – Raoul Duke Aug 21 '10 at 22:01
1  
No, m2eclipse will not always default to 1.5, it will default to the settings of the maven-compiler-plugin. – Pascal Thivent Aug 22 '10 at 16:52
feedback

2 Answers

up vote 13 down vote accepted

The m2eclipse plugin doesn't use Eclipse defaults, the m2eclipse plugin derives the settings from the POM. So if you want a Maven project to be configured to use Java 1.6 settings when imported under Eclipse, configure the maven-compiler-plugin appropriately, as I already suggested:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.1</version>
  <configuration>
    <source>1.6</source>
    <target>1.6</target>
  </configuration>
</plugin>

If your project is already imported, update the project configuration (right-click on the project then Maven V Update Project Configuration).

link|improve this answer
Exactly. Won't fix the compile errors though. – Raoul Duke Aug 21 '10 at 22:09
2  
Yes! That worked! Thanks! – Chris Collins Aug 21 '10 at 22:12
@Raoul YES it will! I explained the problem in my other answer, using Java 6 does fix the compilation errors. And I actually tested this by importing the project because of you insisting it doesn't solve the problem :) – Pascal Thivent Aug 21 '10 at 22:25
Please don't shout. That's just rude. It did work after deleting and re-importing the project. But not otherwise. – Raoul Duke Aug 21 '10 at 22:30
@Raoul It work without reimporting the project if you Update Project Configuration as I wrote. I did test this 3 times and it just works on my machine. – Pascal Thivent Aug 21 '10 at 22:43
show 3 more comments
feedback

I wanted to add something to the answer already provided. maven-compiler-plugin by default will compile your project using Java 1.5 which is where m2e get's its information.

That's why you have to explicitly declare the maven-compiler-plugin in your project with something other then 1.5. Your effective pom.xml will implicitly use the default set in the maven-compiler-plugin pom.xml.

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.