Recently I imported a Maven project in Eclipse and changed the build path Library to work on Java 1.7. After that Eclipse shown me error in project, although there was no error shown in any files.
The error description was Java compiler level does not match the version of the installed Java project facet.
I also changed the project compiler compliance level to 1.7 but still error was not gone. Below screenshot shows the Problem View where this error was shown.
After some research and looking at the project properties, I was able to fix this issue. All I needed to do was to change the Java Project Facet version from 1.5 to 1.7. Below screenshot shows the Project properties window where you can set the project facets version. Personally I don’t like to change anything in UI, I am more inclined to do things through terminal. Well, there is a way to do this by editing the project settings for facets. You will find this in org.eclipse.wst.common.project.facet.core.xml
file inside .settings folder at the project root. The original content of this file was:
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="wst.jsdt.web"/>
<installed facet="jst.web" version="2.3"/>
<installed facet="wst.jsdt.web" version="1.0"/>
<installed facet="java" version="1.5"/>
</faceted-project>
I modified it to below.
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="wst.jsdt.web"/>
<installed facet="jst.web" version="2.3"/>
<installed facet="wst.jsdt.web" version="1.0"/>
<installed facet="java" version="1.7"/>
</faceted-project>
After refreshing the project, error was gone.
If you want to change the compiler compliance level from terminal, you need to edit below properties in org.eclipse.jdt.core.prefs
file.
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.source=1.7
We can change the Library also in .classpath
file of the project, but that is not easy and it depends on the name configured for the Library, for example in my project classpath file, entry for JRE looks like below.
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/Home">
<attributes>
<attribute name="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
I hope it will help someone facing this issue with project facets.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Thank you so much. I spent more than 1 month to research to resolve this issue. You are so talented.
- Thuy
Uff its works :)Thanks :)
- Tomasz
Thanks. It works.
- Steve Kang
Thanks a lot. the solution worked for me.
- ilh
Thanks a lot!! It works!!
- Ahamed Shameem
thank you so much. i was able to resolve my issue, thanks to your article.
- Srikumar K
Thanks a lot … It worked for me
- Ranjitha
thanks a lot
- ankit
Thanks a lot your solution worked for me too!
- Bulelani Mlindelwa
Thanks a lot. Solution worked for me.
- Shashank Dahake