Hi Dominik

The way you created your custom bundle is fine.
However, it looks like your project doesn't contain the resources modules. They 
are not part of the empty webapp.

To the parent pom , at <dependencyManagement>/<dependencies>
add

[code]
      <dependency>
        <groupId>info.magnolia.resources</groupId>
        <artifactId>magnolia-resources</artifactId>
        <version>2.4</version>
      </dependency>
      <dependency>
        <groupId>info.magnolia.resources</groupId>
        <artifactId>magnolia-resources-app</artifactId>
        <version>2.4</version>
      </dependency>
[/code]

To the pom of the webapp (your "child pom") below <dependencies>, add this.
[code]
    <dependency>
      <groupId>info.magnolia.resources</groupId>
      <artifactId>magnolia-resources</artifactId>
    </dependency>
    <dependency>
      <groupId>info.magnolia.resources</groupId>
      <artifactId>magnolia-resources-app</artifactId>
    </dependency>
[/code]


I hope this helps.

regards,
 Christoph

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=e852959b-8809-4ddc-9dac-4829fe412d2b


----------------------------------------------------------------
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: <user-list-unsubscr...@magnolia-cms.com>
----------------------------------------------------------------

Reply via email to