Eclipse - Neon Maven Java archetype - 4 projects
Hi, I generated an maven archetype with 4 projects ?
============================================================
- framework (packaging ejb)
- bulk (kind of packaging : pom) it has 3 modules.
- bulk_ear
- bulk_ejb
- bulk_web
- bulke_ear (packaging ear)
- bulk_ejb (packaging ejb) - jpa...
- bulk_web (packaging war)
===========================================================
I would like to add the framework.jar as dependency to be used on the bulk_web and bulk_ejb projects
Would you please help me to do that. because I tried but with no success
My tries :
- I added the framework dependency on bulk
- I added the framework dependency on bulk_ear
But when I Maven install, the framework.jar does not packaged to ear.
<dependency>
<groupId>br.com.xxx</groupId>
<artifactId>framework</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>