RE: something like 'ant -propertyfile ...'

2008-12-10 Thread Adam Leggett
I've never used it, but there is properties-maven-plugin in the mojo sandbox. http://haroon.sis.utoronto.ca/zarar/properties-maven-plugin/index.html You'll have to build it first I guess: https://svn.codehaus.org/mojo/trunk/sandbox/properties-maven-plugin/ Adam -Original Message- From

Re: something like 'ant -propertyfile ...'

2008-12-10 Thread Stephen Connolly
And beware... it will not do what you will want it to do! If the properties you want to substitute are ones that need to be resolved before starting the lifecycle, then that plugin is of no use to you... -Stephen 2008/12/10 Adam Leggett <[EMAIL PROTECTED]> > I've never used it, but there is pro

RE: something like 'ant -propertyfile ...'

2008-12-10 Thread Adam Leggett
} [...] [...] -Original Message- From: Stephen Connolly [mailto:[EMAIL PROTECTED] Sent: 10 December 2008 16:27 To: Maven Users List Subject: Re: something like 'ant -propertyfile ...' And beware... it will not do what you will want it to do! If the properties you want to substitut

Re: something like 'ant -propertyfile ...'

2008-12-10 Thread Torsten Werner
On Wed, Dec 10, 2008 at 5:11 PM, Adam Leggett <[EMAIL PROTECTED]> wrote: > I've never used it, but there is properties-maven-plugin in the mojo > sandbox. It is useful for me. Thank you! Torsten - To unsubscribe, e-mail: [EMAIL

Re: something like 'ant -propertyfile ...'

2008-12-10 Thread Tomislav Stojcevich
You can put the default values in a section in your pom, then over-ride them in your default profile in settings.xml file or an alternate settings.xml file. If using an alternate settings.xml file you can specify it's location by using --settings path/to/settings.xml or (-s for short). --tom -