Hi, I'm making good progress migrating our build from ant to buildr, but there's one thing I'm still having a difficult time figuring out how to do.
The way my project is laid out is in the following hierarchy (for example): root-project ---- library 1 ---- library 2 ---- webapp1 ---- webapp2 Right now, to build and package webapp 2 from the root directory, the user has to fully qualify it: > buildr root-project:webapp2:package What I'd really like is for our developers to simply type the following from the root: > buildr webapp2 package > buildr webapp1 package etc. Is this possible? Or do they always have to qualify it with project:sub-project:package? Thanks. - Chris
