Reputation: 24481
Is there any combination of configuration options I can use with the maven-ear-plugin to create an EAR with skinny wars, but specifying that I want a specific war not to be modified?
I have a requirement in which I would want one WAR to be deployed as-is, maintaining all its libs in its own WEB-INF/lib folder.
I realize that this may be duplicating libs in the /lib folder as well as the WEB-INF/lib folder, but I would like this war to remain static - that is have all its libs remain self-contained.
Is this feasible? Will it cause a class loading conflict if the same lib exists in WEB-INF/lib as well as /lib? Is there a way to restrict visibility from the /lib folder?
Upvotes: 0
Views: 147