Re: Multiproject property overriding.

2005-06-28 Thread Gaurav Kushwaha
But the point of contention here is the properties specified in ${basedir1}/project.properties and ${basedir2}/build.properties where ${basedir1} is the project root of the sub project and ${basedir2} is the root of the multiproject project root. My pic was that ${basedir2}/build.properties should

Re: Multiproject property overriding.

2005-06-28 Thread Trygve Laugstøl
On Tue, Jun 28, 2005 at 01:19:09PM +0100, Adam Hardy wrote: > Edwin Punzalan on 28/06/05 10:57, wrote: > >I will be quoting the maven site: > >http://maven.apache.org/reference/properties.html > > > >The properties files in Maven are processed in the following order: > > > > 1. Built-in propertie

Re: Multiproject property overriding.

2005-06-28 Thread Adam Hardy
Edwin Punzalan on 28/06/05 10:57, wrote: I will be quoting the maven site: http://maven.apache.org/reference/properties.html The properties files in Maven are processed in the following order: 1. Built-in properties are processed 2. |${basedir}/project.properties| (|basedir| is replaced by

Re: Multiproject property overriding.

2005-06-28 Thread Edwin Punzalan
I will be quoting the maven site: http://maven.apache.org/reference/properties.html The properties files in Maven are processed in the following order: 1. Built-in properties are processed 2. |${basedir}/project.properties| (|basedir| is replaced by the directory where the |

Re: Multiproject property overriding.

2005-06-28 Thread Gaurav Kushwaha
Shouldn't build.properties in master project override the properties specified in the individual project's project.properties ? Thanks, Gaurav. On 6/28/05, Edwin Punzalan <[EMAIL PROTECTED]> wrote: > Try using the -D option in the command line... that will override all > properties in all propert

Re: Multiproject property overriding.

2005-06-27 Thread Edwin Punzalan
Try using the -D option in the command line... that will override all properties in all properties file. ;) Gaurav Kushwaha wrote: Hi have a multiproject and multiple sub projects. I have a property that is defined in each sub project. But occasionally I want to override it by changing it onl

Multiproject property overriding.

2005-06-27 Thread Gaurav Kushwaha
Hi have a multiproject and multiple sub projects. I have a property that is defined in each sub project. But occasionally I want to override it by changing it only in the master project's project.properties. So essentially I have "project.version" property in each project's project.properties file.