Hi I am implementing on of my ant project into maven. I have one parent project which is creating a EAR file. one web project and 1 service and 1 schema project. I have shared libraries with .EAR extension. In shared libraries we have some common dependencies which is use in all projects. so let's say i want to build following project
<groupId>Services1</groupId>
<artifactId>Services1</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
Then i need some classes from shared libraries let say Shared-util.ear. I am trying to include **
<groupId>iservices</groupId>
<artifactId>shared-utils</artifactId>
<version>1.0</version>
<type>ear</type>
**
but maven is not taking this ear as dependency. but when i extract this ear and get particular jar file from there
**
<dependency>
<groupId>iservices</groupId>
<artifactId>commom-service</artifactId>
<version>1.0</version>
<type>jar</type>
</dependency>**
It is working fine.So is there any way that maven read classes from EAR. I know it is little bit complicated question but I am trying to get the solution.