We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To enumerate the classes, the plugin uses ClassGraph. This class scanner supports filtering on package name.
ClassGraph
If we use this, we could write: build.gradle
classDiagram { packageName = "com.github.roroche" outputFile = project.file('diagrams/class_diagram.plantuml') ignoredPackages = [ "com.github.roroche" ] }
ClassGraph even allows wildcards on package names.
This would make it simple to exclude non-interesting parts of my applications.
The text was updated successfully, but these errors were encountered:
+1. Currently one has to list each excluded class individually, which becomes unmanageable
Sorry, something went wrong.
For anyone reading this in 2023: I forked the plugin (and essentially rewrote it): https://plugins.gradle.org/plugin/io.gitlab.plunts.plantuml
No branches or pull requests
To enumerate the classes, the plugin uses
ClassGraph
. This class scanner supports filtering on package name.If we use this, we could write:
build.gradle
ClassGraph
even allows wildcards on package names.This would make it simple to exclude non-interesting parts of my applications.
The text was updated successfully, but these errors were encountered: