I have produced an ear file with a war file inside but the ear file contains jar files which are already in the lib folder of the war file. How can I remove the duplicate jar files and where should those jar files be? In the war file's lib folder or outside the war file? (I am using maven ear plugin and maven war plugin in my project).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I finally figured out a way to do this by producing skinny war files inside an ear file. I was inspired by the maven-war-plugin example from here skinny-wars Followed the instructions of the example, I moved all the jar files out of the war module and put it into a lib folder within ear file. So the final ear file structure will be:
|
|||
|
|
|
If you have jars that are used by both, the EJB archive and the WEB archive, then you can do the following:
Even if you don't have an EJB jar, the above steps will work. |
|||
|