hi, thank you.I need some solution in maven itself...some plugin for maven or some trick in maven.
matinh wrote: > > 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 > > > -- View this message in context: http://www.nabble.com/Iterating-through-a-files-using-maven-plugin-tp21598334p21617920.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
