I want to create a maven project with the following structure:
A
|--pom.xml
|--B
|--pom.xml
|--C
|--pom.xml
where A, B and C are folders, and B's pom.xml and C's pom.xml are children of A's pom.xml. I want to have in B's pom.xml the following section:
<properties>
<some.property>B</some.property>
</properties>
And in C:
<properties>
<some.property>C</some.property>
</properties>
And I want in A something to define the value of several other properties based on the value of some property. So for example, in pseudocode, A would do something like this:
if ( some.property == 'B') then
some.other.property = 'some-value-based-on-b'
else if ( some.property == 'C') then
some.other.property = 'some-value-based-on-c'
...
I want to run the mvn clean install referring to A's pom.xml (which contains a module section pointing to B and C), so, as far as I understand, I cannot use profiles for this (since in maven2 projects running in the same reactor inherits the same active profile. I can use maven3, but couldn't find if it changes anything).
Does anyone has any idea how to do this?
Thanks,