Tagged Questions

[JDepend][1] is a tool that traverses Java class file directories and generates [software package metrics][2] (most importantly dependency cycle detection and distance from the Main Sequence) to measure the design quality for Java packages. JDepend allows ... [1]: http://clarkware.com/software/JDepend.html [2]: http://en.wikipedia.org/wiki/Software_package_metrics

learn more… | top users | synonyms

3
votes
2answers
87 views

Java code Analytic/Metrics tool

I am looking for a free Java code analysis/metrics tool that I can use to see class dependencies, method execution times, etc, and possibly to print out a diagram that shows them. I am currently using ...
3
votes
1answer
349 views

Maven Jdepend report contains no data

I'm running the jdepend maven plugin on my project and whether I run "mvn site:site" or "mvn jdepend:generate" the report that gets generated says "There are no package used." There are no errors in ...
2
votes
2answers
190 views

How to check project boundaries access in Maven projects

I have a set of Maven projects and I'd like to define access rules. For example, projects Database and Cache may only be accessed by project DataLayer, but not from project UiLayer. I'm speaking in ...
1
vote
1answer
137 views

Packages P1 and P2 have a dependency cycle, but no class of P1 uses P2 (analyzed by jdepend)

General package dependency question Under what circumstances can there be a dependency cycle between packages P1 and P2 if no class and interface of P1 uses P2? I.e. where does the "hidden ...
1
vote
2answers
438 views

Hudson JDepend Plugin does not work

I am trying to build a continuous integration environment for php using hudson. I am running a shell script, which generates my phpdepend output, which can be used by the jdepend plugin. Although the ...
1
vote
2answers
81 views

Need a Java Package Dependancy Analysis Tools

Is there anyway to run a package dependency analysis using jDepend, ant contrib's verifydesign task, or any other similar tool, which uses blacklists instead of whitelists? That is to say, I want to ...
0
votes
1answer
79 views

How do I use jdepend's JavaPackage.containsCycle() in junit to detect whether my package is on a package cycle?

I want to test in junit via jdepend whether my package tree is on a package cycle (i.e. has a direct cyclic dependency). Currently, it isn't (see output below, and jdepend's Eclipse plugin does not ...
0
votes
1answer
67 views

JDepend misses Cycles

We have a JUnit test based on JDepend 2.9.1 in order to find illegal dependencies and cycles. Today we found that JDepend is missing dependencies. It doesn't seem to consider A depending on B in the ...
0
votes
1answer
105 views

JDepend Dependency Constraint Failing

I'm using JDepend to analyze my architecture and create structural tests to verify dependency within a Layered architecture. The two relevant layers are com.domain and com.infrastructure. Domain ...
0
votes
2answers
96 views

maven jdepend fail build with cycles

Is there way to use the jdepend plugin in maven to fail a build when package cycles exist? I know you can do it fairly easily with ant, but I haven't figured out how to do it with maven. thanks, Jeff ...