Release doesn't pass args

2006-11-07 Thread Emmanuel Hugonnet
Hi, How do you pass an argument to your maven build when releasing ? I have a project with 5 modules and I try to release it. My project needs an argument that I pass using -Denv=dev. It seems that when I use the release:prepare -Denv=dev my argument is not passed to the maven build process

Re: Release doesn't pass args

2006-11-07 Thread Edwin Punzalan
Have you tried passing through the preparationGoals parameter ? Its default is clean integration-test... maybe you can instead have clean integration-test -Denv=dev ? Emmanuel Hugonnet wrote: Hi, How do you pass an argument to your maven build when releasing ? I have a project with 5

Re: Release doesn't pass args

2006-11-07 Thread Emmanuel Hugonnet
Edwin Punzalan a écrit : Have you tried passing through the preparationGoals parameter ? Its default is clean integration-test... maybe you can instead have clean integration-test -Denv=dev ? Emmanuel Hugonnet wrote: Hi, How do you pass an argument to your maven build when releasing ? I