I have two projects:
1) ProjectCORE
2) ProjectMAIN
For some reason, the test classes in ProjectMAIN depend on test classes in ProjectCORE, which don’t get included in the ProjectCORE jar I have listed as a dependency for ProjectMAIN, causing compile problems in ProjectMAIN.
How to work this out, preferably without including the test classes in my ProjectCORE jar?
This is possibly a candidate for using
attached tests. Refer to this guide for doing this.