users@glassfish.java.net

Re: Update Tool Causes Death to Domain

From: <glassfish_at_javadesktop.org>
Date: Tue, 24 Aug 2010 12:12:40 PDT

I see. After playing with it for some time I finally manually put the lib jar in a folder 'lib' in the ear. This worked, thanks!

Also, for anyone out there using Maven, this was my problem:
What I had:
<jarModule>
        <groupId>someGroupName</groupId>
        <artifactId>someArtifactName</artifactId>
        <includeInApplicationXml>true</includeInApplicationXml>
</jarModule>

What I have now that works:
<jarModule>
        <groupId>someGroupName</groupId>
        <artifactId>someArtifactName</artifactId>
        <bundleDir>lib</bundleDir>
</jarModule>
[Message sent by forum member 'javamonkey79']

http://forums.java.net/jive/thread.jspa?messageID=480906