I have a project that i test, compile and build the war-package for it at my developer-environment. Now I need this package at the test-environment, for which the package needs/has an other configuration. The same later fot the production-environment.
So my question:
do I need to compile and build the project again with the other configuration?
or can I just change the configuration-file inside of the .war file?
Im trying to accomplish this in the context of continuous delivery, which says "build only once", but as I know/read you cant change files in a .war package. So Im bit confuse how to solve this without making the build twice.
Thanks for any help