Dan Fabulich
Sat, 27 Sep 2008 18:49:32 -0700
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