The eclipse 'problems' tab is displaying this error:
Description Resource Path Location Type
Java compiler level does not match the version of the installed Java project facet. groupping Unknown Faceted Project Problem (Java Version Mismatch)
I am using eclipse, my pom.xml has this setting:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
Where else could the settings be mismatched?