Hi,
Perhaps this question has been asked and answered before but I couldn’t find the answer. I have a web application that depends on the JavaMail API. I include the mail.jar and activation.jar files in my project’s build path. This causes the mail.jar and activation.jar to be added to my application’s WEB-INF/lib folder. This causes problems when I deploy to WebLogic 8.1 because WebLogic 8.1 bundles its own copy of the JavaMail API and I am running into version conflicts. What I would like to do is use my versions of the mail.jar and activation.jar at compile time only, and not include them in WEB-INF/lib, however, I don’t seem to be able to coax MyEclipse into doing this for me when I deploy the application. To summarize, is there a way to exclude compile time jar file dependencies from the WEB-INF/lib folder in the deployed application? Thanks in advance.