Deploy an EAR on Weblogic 12.2.1.3
Hi! I have a problem deploying an EAR on Weblogic 12.2.1.3.
The internal structure is the following:
MyEAR.ear
|__ /APP-INF
| |___ /lib (with all dependencies)
|__ MyWar.war
When I deploy the EAR, weblogic doesn't find the internal dependencies of MyWar.war, but MyEar.ear have it on APP-INF/lib.
The config.xml file have the following deployment lines:
<app-deployment> <name>MyEar</name> <target>myServer</target> <module-type>ear</module-type> <source-path>Path\To\My\EAR\MyEar.ear</source-path> <deployment-order>120</deployment-order> <security-dd-model>DDOnly</security-dd-model> </app-deployment>
In all previous versions of Weblogic it was correctly deployed. Can someone help me?
Thanks.