Reputation: 3815
I have 2 projects for which I can create javadoc just fine using IntelliJ IDEA. However, if I create them in the same folder the docs are overwritten. I would like to generate a single javadoc for both projects (and add more later on). How do I go about doing this in IDEA?
Upvotes: 0
Views: 33
Reputation: 97128
You should convert the separate projects into modules of a single project, and then use the "Whole project" option as the scope in the "Generate JavaDoc" dialog.
Upvotes: 1