Hi,

i've found a little issue based on an incompatibiliry of MVN 2.0.10/9 and MVN 2.1

I've defined some properties in my settings.xml:

<activeProfiles>
   <activeProfile>homeoffice</activeProfile>
   <activeProfile>devn-oracle-test</activeProfile>
</activeProfile>

and based on that in my profiles.xml in the project there will be set some properties:


<profile>
  <id>devn-oracle-test</id>
  <properties>
    <database.pom.groupId>...</database.pom.groupId>
    <database.pom.artifactId>..<database.pom.artifactId>
    ...
  </properties>
</profile>

So in my pom.xml file:

<plugins>
  <plugin>
    <...>
    <dependencies>
      <dependency>
        <groupId>${database.pom.groupId}</groupId>...
         ...
      </dependency>
   ...
</plugins>
...


<dependency>
   <groupId>${database.pom.groupId}</groupId>...
</dependeny>

In MVN 2.1 the build (or mvn install) will fail and in mvn 2.0.[9,10] it works....

So may be i oversight something or am i'm doing things wrong ?

In MVN 2.1 is the settings.xml of the user not read ?

Kind regards
Karl Heinz Marbaise
--
SoftwareEntwicklung Beratung Schulung    Tel.: +49 (0) 2405 / 415 893
Dipl.Ing.(FH) Karl Heinz Marbaise        ICQ#: 135949029
Hauptstrasse 177                         USt.IdNr: DE191347579
52146 Würselen                           http://www.soebes.de

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to