The current release of oaw has a bug for multiple stereotypes. Now there is
a patched version of the oaw-uml2-adapter.jar.
You can apply this jar to your project with Maven's exclusion mechanism.

In you pom.xml (for the most projects is this the pom.xml out of the parent
project) change:

<dependency>
           <groupId>org.fornax.openarchitectureware</groupId>
           <artifactId>oaw-uml2</artifactId>
           <version>4.1.2</version>
           <type>pom</type>
</dependency>

into

<dependency>
           <groupId>org.fornax.openarchitectureware</groupId>
           <artifactId>oaw-uml2</artifactId>
           <version>4.1.2</version>
           <type>pom</type>
           <exclusions>
               <exclusion>
                   <groupId>org.openarchitectureware</groupId>
                   <artifactId>oaw-uml2-adapter</artifactId>
               </exclusion>
           </exclusions>
       </dependency>

       <dependency>
           <groupId>org.openarchitectureware</groupId>
           <artifactId>oaw-uml2-adapter</artifactId>
           <version>4.1.2-patch-1</version>
       </dependency>

This mean you exclude the buggy oaw-uml2-adapter dependency. Later you add
the corrected dependency...thats all :)


--
Thorsten Kamann
Software-Architect, Consultant, Coaching
Germany, NRW

Business:
itemis products and solutions GmbH & Co. KG
Heinrichstraße 51
44536 Lünen

Rechtlicher Hinweis:
Amtsgericht Dortmund, HRA 15841
P.h.G.:
Komplementär: itemis management GmbH, Amtsgericht Dortmund HRB 18939
Geschäftsführer Jürgen Rödl

Personal:
[EMAIL PROTECTED]
http://www.thorsten-kamann.de/
callto://thorque

Fornax-Platform - Platform for developing MDSD-related Tools and components
http://www.fornax-platform.org/
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Fornax-developer mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fornax-developer

Reply via email to