I have an outdated Java application (not my own) that I am trying to create in Eclipse Galileo.
Since this is not mine, I canβt talk about the quality of the design, but I come across a few examples where I will have something like this:
In a project called, for example, "lib_a", I will have a file containing this:
import com.acme.lib_b.onething;
The lib_b project, on the other hand, will contain:
import com.acme.lib_a.anotherthing;
Of course, the problem is that one project cannot be built, because errors prevent me from creating a .jar file that can be added as an external archive to another project, and vice versa.
It seems to me that this should be quite common when creating Java applications. Rewriting it from scratch is not an option, so I would like to know "what other people do."
source
share