We are doing some architecture refactoring. We are a SaaS company so all deploys are to our own self managed servers. Current model packs all of our binaries along with 3rd party libraries we use into ears, wars, tars, etc. These packages include all of the libraries they depend on.
When they are deployed they are manually exploded (untar d) or picked up by whatever target container they were built for.
Since the libraries don t change much we are wondering if it s a better idea to deploy the libraries before hand, as part of environment setup, and update them as needed. We aren t leaning one way or the other, and I am just looking for some feedback.