What tool would you recommend to detect java package cyclic dependencies,
knowing that the goal is to list explicitly the specific classes involved in the detected 'across-packages cycle' ?
I know about classycle and JDepend , but they both fail to list the classes involved in a cyclic package dependency.
Metrics has an interesting graphical representation of cycles, but again limited to packages, and quite difficult to read sometime.
I am getting tired to get a:
" you have a package cycle dependency between those 3 packages
you have xxx classes in each
good luck finding the right classes and break this cycle "
Do you know any tool that takes the extra step to actually explain to you why the cycle is detected (i.e. 'list the involved classes') ?
Riiight... Time to proclaim the results:
@l7010.de thank you for the effort. I will vote you up (when I will have enough rep), especially for the 'CAP' answer... but CAP is dead in the water and no longer compatible with my eclipse 3.4. The rest is commercial and I look only for freeware
@daniel6651 thank you but, as said, freeware only (sorry to not have mentioned it in the first place)
@izb as a frequent user of findbugs (using the latest 1.3.5 right now), I am one click away to accept your answer... if you could explain to me what option there is to activate for findbug to detect any cycle. That feature is only mentioned for the 0.8.7 version in passing (look for 'New Style detector to find circular dependencies between classes'), and I am not able to test it.
Update: works now, I had an old findbugs configuration file in which that option was not activated. I still like CAD though ;)
THE ANSWER is... see my own (second) answer below