Re: How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-20 Thread Baz
Wayne, got it. Thanks. On 7/20/07, Wayne Fay <[EMAIL PROTECTED]> wrote: I understand the situation, but you simply need to realize that (at least at this point) Maven does not support your use case. Considering the "work" to "maintain" product/pom.xml is extremely trivial (add one line in whe

Re: How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-20 Thread Wayne Fay
I understand the situation, but you simply need to realize that (at least at this point) Maven does not support your use case. Considering the "work" to "maintain" product/pom.xml is extremely trivial (add one line in when a new module is added), I don't see the payoff all that large for doing t

Re: How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-19 Thread Dmitry
ject: Re: How to build sub-directories recursively without knowing the exact names for sub-directories? Say I have a the following directory structure: product/ module_1/ module_2/ ... Can i have a pom.xml at product directory level, and it will go into module directories and run their

Re: How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-19 Thread Baz
Say I have a the following directory structure: product/ module_1/ module_2/ ... Can i have a pom.xml at product directory level, and it will go into module directories and run their pom files? The number of module subdirectories can increase but i do not want to maintain the product/pom.

Re: How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-19 Thread Wayne Fay
What's your use case? How could you possibly not know the names of the modules when you're building a project? Are you trying to build a "super master pom" that builds all your company's projects, or something along those lines? Wayne On 7/19/07, Baz <[EMAIL PROTECTED]> wrote: All, I know we c

How to build sub-directories recursively without knowing the exact names for sub-directories?

2007-07-19 Thread Baz
All, I know we can use to specify which sub-directories that we would like to build. What if i dont know the name of the sub-directories? Can i do wildcards? Thanks.