Hi,
I am trying to deploy an .ear to Glassfish v3. The .ear is a "Spring" application made up of two modules:
domain.jar
(entities, persistence)service.jar
(business logic with spring bean config).
I'm creating the .ear with Maven ear plugin and the resultant dir structure of the .ear is as follows:
/APP-INF/lib/domain.jar;service.jar
/META-INF/application.xml
I've copied the Spring dist to /glassfish/lib so it is available to all domains on the app server.
UPDATE:
It turns out that commenting out <includeInApplicationXml>true</includeInApplicationXml>
from the ear pom.xml
will make it deploy. But then my domain.jar
is not deployed.