Maik, replace the snippet you copied above with the following and you should be 
good to do. 
In theory, just "importing" the dependency management of magnolia-bundle-parent 
should work, but I've had some weird problems with older versions of Maven. If 
you use Maven 3.1 you can skip the first scope:import.

Also note that you could also use the magnolia-bundled-webapp, which already 
includes dam, imaging, ...
[code]
  <dependencyManagement>
    <dependencies>
     <dependency>
        <groupId>info.magnolia</groupId>
        <artifactId>magnolia-project</artifactId>
        <version>5.0.3</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>info.magnolia</groupId>
        <artifactId>magnolia-bundle-parent</artifactId>
        <version>5.0.3</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
      <dependency>
        <groupId>info.magnolia</groupId>
        <artifactId>magnolia-empty-webapp</artifactId>
        <version>5.0.3</version>
        <type>war</type>
      </dependency>
      <dependency>
        <groupId>info.magnolia</groupId>
        <artifactId>magnolia-empty-webapp</artifactId>
        <version>5.0.3</version>
        <type>pom</type>
      </dependency>
      <dependency>
        <groupId>info.magnolia.dam</groupId>
        <artifactId>magnolia-dam</artifactId>
        <version>1.0.2</version>
      </dependency>
      <dependency>
        <groupId>info.magnolia</groupId>
        <artifactId>magnolia-module-imaging</artifactId>
        <version>3.0.1</version>
      </dependency>
  </dependencies>
[/code]

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=8a61a68c-03f4-40c4-8c90-948195d6e0c2

You are invited to Magnolia Conference. Less than a month to go! Register now: 
http://www.magnolia-cms.com/conference/register.html


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to