To kick off a glorious new era of core features, I've checked in a first attempt at adding a "make-like" mode to Maven. Basically it's just an attempt to port maven-reactor-plugin into the core, described in more detail here:

http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode

New options:

* -rf --resume-from: Resume reactor from specified project
* -pl --project-list: Build the specified reactor projects instead of all projects * -am --also-make: If a project list is specified, also make projects that the list depends on * -amd --also-make-dependents: If a project list is specified, also make projects that depend on projects on the list

Examples:

* resume: mvn -rf packages/b-package
* make: mvn -am -pl ui/a-ui,ui/b-ui
* make dependents: mvn -amd -pl packages/a-package,packages/b-package
* make both: mvn -am -amd -pl packages/b-package

Please review, test, and let me know what you think. It's my intention that this feature could be released for Maven 2.1.0 in the very near future.

-Dan

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

Reply via email to