Hi

I have a big reactor project. In one project, there is a property set as

<properties>
  <commons-version>2.2.1</commons-version>
</properties>

and in a later project, it is
<properties>
  <commons-version>2.2.4-SNAPSHOT</commons-version>
</properties>
..
<build>
                <plugins>
                        <plugin>
                                <groupId>commons</groupId>
                                <artifactId>commons-maven</artifactId>
                                <version>${commons-version}</version>
                                <executions>
 ...

The differing versions are desired, and correct.

If I build the later project in isolation, commons-version =
2.2.4-SNAPSHOT. If I build it in the reactor, then
commons-version=2.2.1 (it seems)

bug? or intended?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to