I have a project that works fine in MyEclipse 10. After I upgraded the IDE to MyEclipse 2014, the pom.xml file generates an error:
“Cannot upgrade/downgrade to Dynamic Web Module 2.3 facet. It is incompatibile with already installed facets: JSTL Libraries 1.2.1. Please modify project configuration.”
I then modified the .project file to be nothing but the project name (as a “general” project) and re-open the project. Immediately, I still get the same error message.
The error marker is on the <configuration> tag of the following plugin declaration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<!– excludes symbol map in WEB-INF/deploy/ –>
<configuration>
<warSourceExcludes>.gwt-tmp/**,WEB-INF/classes/**</warSourceExcludes>
</configuration>
</plugin>