Questions tagged [jdepend]

JDepend is a tool that traverses Java class file directories and generates software package metrics (most importantly dependency cycle detection and distance from the Main Sequence) to measure the design quality for Java packages. It also allows you to automatically measure the quality of a design effectively.

JDepend is a tool that traverses Java class file directories and generates software package metrics (most importantly dependency cycle detection and distance from the Main Sequence) to measure the design quality for Java packages. It also allows you to automatically measure the quality of a design in terms of its extensibility, reusability, and maintainability to manage package dependencies effectively.

21 questions
0
votes
1 answer

Could not find method jdependMain() for arguments

I am trying to run JDepend plugin via gradle. I have following jdepend.gradle file: apply plugin: 'jdepend' // Repository definition to get JDepend libraries. repositories { mavenCentral() } jdepend.reportsDir =…
Sergii Sopin
  • 411
  • 2
  • 11
0
votes
1 answer

Measure Dependency from different Projects (JDepend?)

So I have different projects in my Eclipse-Workspace, though they are all connected, meaning they call classes of each other. I know wanted to measure the dependency of some classes with JDepend. But the problem is, it only shows results matching…
user5417542
  • 3,146
  • 6
  • 29
  • 50
0
votes
0 answers

JDepend Maven Plugin - Add Excludes

I want to use the the following mojo: JDepend Maven Plugin Unfortunately the generated report will also show dependencies to java.*, sun.* etc. Now I have seen that one can specify a jdepend.properties file where customization would happen. The…
JDC
  • 4,247
  • 5
  • 31
  • 74
0
votes
0 answers

How to get vendor name and version of libraries used in java project through java program

I am able to get library list used in my java project using J Depend using simple java program as bellow, import java.io.IOException; import java.util.Collection; import java.util.Iterator; import jdepend.framework.*; //import…
user2215139
  • 1,805
  • 2
  • 18
  • 24
0
votes
1 answer

How to use JDepend to identify the libraries used in java spring maven application

I want to use JDepend and see how we can identify the libraries directly used in an application And want to Write a sample application to identify the libraries used in my application. How it can be achieved. I read article…
user2215139
  • 1,805
  • 2
  • 18
  • 24
0
votes
3 answers

How To Convert The Invoice Number On JDE Solution Report To Bar-code

My project for JDE is to convert the invoice number that appear on JDE report to bar-code. Would you mind to tell me how I am able to do it? Because I am just a beginner for JDE software.
goh6319
  • 137
  • 1
  • 3
  • 20
1
2