2012/2/27 Stein, Eric <[email protected]>:
> I needed to tweak the eclipse compiler to 1.6.
You have to configure maven to use the Java 1.6 compiler:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
If done so, m2e can be used to configure eclipse on the same settings.
(Project context menu -> Maven -> Update project...)
Regards,
Lars
_______________________________________________
m2e-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/m2e-users