Combine Javadoc for multiple modules into a single collection

后端 未结 1 814
误落风尘
误落风尘 2021-02-20 12:59

I have a Java application consisting of several modules. I\'d like to generate Javadoc for all of them together: that is to say, from these several modules, I\'d like a single c

1条回答
  •  天命终不由人
    2021-02-20 13:35

    If you can manage it, javadoc can generate the combined documentation provided that you combine the input sources. Perhaps there is a more elegant solution; but, why not copy all the sources into a combined tree and then run javadoc?

    The other option is to use the -link option and have one site's documentation refer to another site's documentation. Note that if you choose this option, you may want to also look at the linkoffline option for flexibility in your javadoc builds (unless you manage to deploy documentation to the web servers in the correct order before it is needed by subsequent builds).

    0 讨论(0)
提交回复
热议问题