-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate only package dependecies #85
Comments
Not sure if I understand what you mean something like combining
all into That you can do already. A slicing pattern of `"org.mydomain.(*)**" should put all of the above into one slice "stuff". |
Our application is devided in sub projects, where each one creates a jar file. The question we like to answer is how these jar files are dependend from each other. The generated graphml file is way to big to analyze. So the question that came up was, if there is a way to generate only the dependencies for packages on a given package level (or generate all deps and cut out classes and some packages). For example: Given are 3 Jars with the following packages:
In the config file I somehow say:
The result is a graphml file that only shows the packages up to the "packageLevel" and their dependency to each other. org.mydomain.pkg.1 --depends on--> org.mydomain.pkg.2 I hope I could express my question. |
Ok, I understand now. Makes sense. Degraph currently does not support this. |
Hi, and thanks for the great tool! I would also like to limit the graph to only package nodes and dependencies between them (no additional "package level" restriction needed). |
Hi Jens,
thanks for the great Tool!
I am curious if there is or will there be a possibility to only generate dependencies on a given package level.
Thank you,
Christian
The text was updated successfully, but these errors were encountered: