damn copy-pase <project> <parent> <artifactId>project-parent</artifactId> </parent> <artifactId>project-complete</artifactId> <modules> <module>project-parent</module> <module>project-a</module> <module>project-b</module> ... <module>project-e</module> </modules> <dependencies> <dependency> <artifactId>project-a</artifactId> </dependency> <dependency> <artifactId>project-b</artifactId> </dependency> ... <dependency> <artifactId>project-e</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <inherited>false</inherited> <!-- not strictly speaking necesary, but best practice as we are binding an aggregator goal --> ... </plugin> </plugins> </build> </project>
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
