Open
Description
I have a multi-module Gradle project with application modules in different Gradle modules. I've added apt
to gather Javadoc for documentation, and it runs separately for each module. However, each module overwrites the javadoc.json
file content.
I'm uncertain about the best way to handle this. A solution that comes to mind is to generate a javadoc.json
file in each module's build
directory and then, when creating SpringModulithDocumentationSource
, parse all build
directories for javadoc.json
files and consolidate them into one instance.