Hi Dan, seems extremely usefull to me. 2 questions I did not find an answer to in the documentation:
1) You spawn a different maven process are thoses processing using MAVEN_OPTS by default (most important would be the memory settings I have set)? 2) How does it know how to stop walking up the inheritance tree? What I mean is, why does not try to build hibernate for example (assuming my project depends on that)? Does there need to be a parent project with a <modules/> section for it to work? Would it work if I have a domain module which is used by several applications (but is just a dependency, not part of a multimodule build) to make that part of the chain (in either direction), if of course the source code is available on the building pc. regards, Wim 2008/9/28 Dan Fabulich <[EMAIL PROTECTED]> > > The Maven team is pleased to announce the release of the Maven Reactor > Plugin, version 1.0. > > This plugin can build a subset of interdependent projects in a reactor. It > should be useful in large reactor builds that include irrelevant stuff > you're not working on. > > http://maven.apache.org/plugins/maven-reactor-plugin/ > > The Reactor plugin is normally run from the command line, like this: > > * reactor:resume resumes a reactor at a certain point (e.g. when it fails > in the middle) > Example: mvn reactor:resume -Dfrom=bar > > * reactor:make builds a project X and all of the reactor projects on which > X depends > Example: mvn reactor:make -Dmake.folders=foo,bar > > * reactor:make-dependents builds a project X and all of the reactor > projects that depend on X (the reverse of reactor:make) > Example: mvn reactor:make-dependents -Dmake.folders=foo,bar > > * reactor:make-scm-changes build all reactor projects that you personally > have changed (according to SCM) and all reactor projects that depend on your > changes > Example: mvn reactor:make-scm-changes > > This is the first release of the Maven Reactor Plugin. > > Enjoy, > > -The Maven team > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
