You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For what it's worth, I was looking to do the same thing. Reason being that I want to be able to check the dotfile and PNG into git and easily reference in readmes, etc. I know I can use gitignore for that, but it's a bit ugly.
I managed to get it working by registering my own instance of ProjectDependencyGraphGeneratorTask without using the plugin's extension, like:
val generator =DependencyGraphGeneratorExtension.ProjectGenerator(
// your config here
)
project.tasks.register("generateReadmeDiagram", ProjectDependencyGraphGeneratorTask::class.java) {
projectGenerator = generator
outputDirectory =File(project.projectDir, "docs") // change this!
}
Hi!
Is it possible to change the directory output to save in another directory than
/build
?Thanks
The text was updated successfully, but these errors were encountered: