I am not sure what you are proposing. Wouldn't I still mvn install my artifacts before running mvn assembly on my assembly project?
Jeff On Tue, Jan 19, 2010 at 4:34 PM, Wayne Fay <[email protected]> wrote: > > 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] > >
