Greetings,
I have an ear project and have the following structure
EAR
|—– EJB
|—– WAR
|——– WEB-INF (Which has all the Struts jars…etc)
Now, I want to include another web project(with a different context) within the same EAR project and need a structure like the following
EAR
|—– EJB
|—– WAR 1
|——– WEB-INF (Which has all the Struts jars…etc)
|—– WAR 2
|——— WEB-INF (Struts jars…etc)
I don’t want to package the struts jar twice within the same ear file. How to avoid it
The problem is, Can I create another web project 2 without including these struts jar files, but still making use of the struts jar in web project 1.
How can I make a utility jar files that has struts.jar etc and make both web project 1 and 2 point to the utility jars.
How can I create a utility jar project that has those struts libraries and add it to the EAR ???
Thanks in advance.
-Ganesh