Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem:

I have an EJB project which is EE-module-dependant of a JavaProject. My EJB project has classes that won't compile because of missing types (which are present in the JavaProject). The project won't compile unless I refresh/open-close the project/ clean-build etc. Eventually, it does compile.

My question is how do I get around this problem. Is it a good idea to define the JavaProject in the build path as well as in the EE module dependencies of this EJB project?

Thank you.

share|improve this question

1 Answer

If you are having to refresh the project before things build, then something is modifying project files outside of Eclipse. Are you using Ant or Maven or any other command line tools to operate on these projects?

Duplicating your dependency specification will not resolve this issue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.