Hi Max, 2006/2/23, Max <[EMAIL PROTECTED]>: > > Hi, > > Is it possible to setup a multi-module project such that a child module > can be > shared between two parent projects? What if i have two seperate projects A > and B > and they both depend upon a module C. How do i do this since there is only > one > <parent> tag?
AFAIK I don't think this is possible. Also is it possible to have common checkstyle plugin for all child modules > from > within the parent pom? Do you mean defining the checkstyle report once for all modules ? Then just define it in the parent POM, it will be inherited : ~ <reporting> ~ <plugins> ~ <plugin> ~ <artifactId>maven-checkstyle-plugin</artifactId> ~ </plugin> ~ </plugins> ~ </reporting> MAx. > > - Yann
