> I would prefer to build the entire project from one command line. If I put > the assembly into a sub project that is two steps. I must install all of my > artifacts and then run assembly on another module. While feasible it seems > wrong to me that I can't simply walk up to the top level and build my entire > maven project using a single command line.
Can you not use the assembly:single mojo and bind it in that assembly module to the package phase? <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal>... Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
