I have a small project consisting of one maven project and two maven modules. One of the modules is webapp, and I use WTP to run all my web applications. Everything was fine until today, when webapp began to refuse compilation, citing:
Project 'sdx.client' cannot reference itself
If I remove the following line from .classpath :
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
my project is compiling again. From googling, I believe that this is a WTP element, but I'm not quite sure what it does and why it believes that it contains a reflexive link to the project containing it. Suggestions on where to look to find the source of the problem will be very welcome.
Update
I did not solve the problem, but all my symptoms disappeared, deleting the project and checking it again from svn. So this seems like a mistake, but I donβt know where to report it or how to propose a decision procedure to determine when it has been fixed.
eclipse eclipse-wtp
Ian dickinson
source share