I need to include some stuff in my final war:
I have a situation with multi profiles files in the src/main/resources:
configuration.properties (local)
configuration.dev.properties
configuration.production.properties
so, I would like that when for example '-Pproduction' is executed the file configuration.production.properties is copied in the war at the dir WEB-INF/classes and renamed as 'configuration.properties'. How can I get that?
Thanks
Randomize