Relocate the dependencyManagement-part to the dependencies, I think that
should do the trick.
> <dependencies />
> <dependencyManagement>
> <dependencies>
> <dependency>
> <groupId>com.example.someGroup-A</groupId>
> <artifactId>webapp-A</artifactId>
> <type>war</type>
> <version>1.2</version>
> <scope></scope>
> </dependency>
> <dependency>
> <groupId>com.example.someOtherGroupId-B</groupId>
> <artifactId>webapp-B</artifactId>
> <type>war</type>
> <version>1.3</version>
> </dependency>
> </dependencies>
> </dependencyManagement>
Should be:
<dependencies>
<dependency>
<groupId>com.example.someGroup-A</groupId>
<artifactId>webapp-A</artifactId>
<type>war</type>
<version>1.2</version>
<scope></scope>
</dependency>
<dependency>
<groupId>com.example.someOtherGroupId-B</groupId>
<artifactId>webapp-B</artifactId>
<type>war</type>
<version>1.3</version>
</dependency>
</dependencies>
--
Roland Asmann
CFC Informationssysteme Entwicklungsgesellschaft m.b.H
Bäckerstrasse 1/2/7
A-1010 Wien
FN 266155f, Handelsgericht Wien
Tel.: +43/1/513 88 77 - 27
Fax.: +43/1/513 88 62
Email: [EMAIL PROTECTED]
Web: www.cfc.at
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]