Maven, I have a multi module maven project and am trying to generate an assembly that houses all our javadocs and our asciidoc generated docs. How would you do this?
Currently I have a directory structure that looks like this: root java-library-one java-library-two ascidoc-project pom.xml If I put a javadoc:aggregate plugin execution on the root pom it generates the javadoc for both of my projects, which is what I want. But I am not sure where to put my assembly. Should that be called from the root pom? Should I make a sub project for the assembly? If I do that, can it refer to the javadoc generated by the parent? Let me know what you think! Thanks!
