I have two projects in eclipse (using either Kepler or recent Juno, with or without
Maven plugin).
In each project there is a class named as in (for sample) com.mymy.Worker.java .
This prevents compilation.
Is there a way to tell eclipse which one to ignore? [preferred solution]
Is it possible to make Maven "see" one class during a particular phase sequence (e.g. compile,
test) and the other class during another phase (e.g. compile, test, package) ?
[ obviously I could rename one of them or delete one from one of the projects but that would create other problems. ]