I always encounter the following situation while "Run On Server" on my mavenized EAR project.
Situation
If I take the following steps on my EAR project:
- mvn clean install
- Run on Server
... will lead to:
The application.xml generated by Maven will be correct:
<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5">
<display-name>com.company.fbps.api.impl.ear</display-name>
<module>
<ejb>com.company.fbps.api.impl.ejb-0.0.1-SNAPSHOT.jar</ejb>
</module>
</application>
While the EJB project "com.company.fbps.api.impl.ejb" is a maven dependency of the EAR project:
(in "com.company.fbps.api.impl.ejb" pom.xml)
<dependency>
<groupId>com.company.fbps.api.impl.ejb</groupId>
<artifactId>com.company.fbps.api.impl.ejb</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>ejb</type>
</dependency>
... but the application.xml generated by Run on Server is incorrect:
The Oracle WebLogic Server Plugin will generate a application.xml to:
...\.metadata\.plugins\org.eclipse.core.resources\.projects\com.company.fbps.api.impl.ear\beadep\fbp_local_test\com.company.fbps.api.impl.ear\split_src
.... having the wrong EJB jar name:
<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5">
<display-name>com.company.fbps.api.impl.ear</display-name>
<module>
<ejb>com.company.fbps.api.impl.ejb.jar</ejb>
</module>
</application>
So in this process some integration is not aware of the fact that Maven generates a different ejb.jar name and this is not used for "Run on Server".
Workaround
I found a workaround to get it somehow running.
If you say "Maven - Update Project Configuration ..." before "Run on Server" it works once.
But will be corrupt again after the next build.
Used Plugins
- Oracle WebLogic Server Tools for Eclipse 11.1.1.8.0
- m2e - Maven Integration for Eclipse 1.0.100.20110804-1717
Question
Do you have any idea how to correct this situation without using my workaround?