On Thursday 22 January 2009 arve wrote:
> hi,
> I run a maven task mvn appfuse:gen -Dentity=Pojo name.
> if i have 100 pojos in a folder i have to run the same command 100 times.
> Instead is there some plugin/trick whcih could iterate the same command
> with different pojo names with a  single command?

Use the shell! For example in bash it would be something like

  for POJO in $ALL_POJOs; do
    mvn appfuse:gen -Dentity=$POJO;
  done

hth,
- martin

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to