Hi,

I have a question regarding the <dependencyManagement> section in the pom.xml files. When I have several dependencies and there are conflicts in the transitive dependencies (e.g. commons-beanutils-1.6.1 and commons-beanutils-1.7.0) I thought I could specifiy the version to use in the <dependencyManagement> section. Is that correct ? Say I put

<dependencyManagement>
  <dependency>
    <groupId>commons-beanutils</groupId>
    <artifactId>commons-beanutils</artifactId>
    <version>1.7.0</version>
  </dependency>
</dependencyManagement>

in my pom. This does not lead to maven using only that version no matter what version is specified in the referenced poms ?

--
Christian


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

Reply via email to