Scott Stirling wrote:

> How do I control the order in which the projects are built?  Or how do I
> declare my projects in such a way as to make Maven figure them out correctly
> and dynamically?  How does Maven figure out the order?

Reactor creates a graph of projects and does it's best attempt at
building them in the correct order, which means that dependency
projects are build before dependant project. Projects that are not
involved in a dependency relationship are build in arbtrary order
(be it alphabetical ordering of names, or Object.hashCode() ordering
of unmarshalled POMs).

> Maybe I'm doing the wrong thing.  I could define the dependency order in the
> maven.xml as an alternative, but it would seem like I'm missing something
> key about how Maven works if I do that.

You should never need to do that.

R.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to