plantuml-gradle-plugin
plantuml-gradle-plugin copied to clipboard
[Improvment] Configure sourcesDirs via inputs
As suggested here: https://github.com/classgraph/classgraph/issues/427#issuecomment-625252698
Dissociate:
-
BuildClassDiagramTask
a rawCustomTask
implementation withoutAbstractClass
-
PluggableBuildClassDiagramTask
to be wired be the plugin and execute by default bybuildClassDiagram
task -
StandaloneBuildClassDiagramTask
to be overridden directly inbuild.gradle
and set custom URL (for tests files for example)
Normally the same task would be used in all cases (assuming you want to support the same features), it doesn't matter if the task is being created/configured by the plugin or being created/configured by the user.
Normally the same task would be used in all cases (assuming you want to support the same features), it doesn't matter if the task is being created/configured by the plugin or being created/configured by the user.
No issue due to Extension on one hand and Input/Option on the other hand?