I'm new to maven and coming from a rails background. At a high level, I want to connect to a different database if I'm running tests, running the app locally, and when I deploy to production.
Here's what I was thinking. When I run $ mvn test it should use test.properties, when I run $ mvn jetty:run locally it should use dev.properties, and when I deploy it should pickup a properties file that is already on the server, and not in the WAR.
But I have no idea how this is typically done in a java project built with maven.