I'm trying to build an application starting from an Appfuse Archetype, but I get some strange problems. For once I'd like to use a hsqldb for automated unit tests and integration tests, and a mysql db for my manual testing so that I can easily manipulate the data when I need to, so it would be nice to automatically switch profiles during the testing phases. Is there a way to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'm not sure if this is exactly what you are asking for, but you can do the following to setup multiple filters for your Maven project.
This way you can setup multiple profiles using:
You can then run the build with the relevant property file using:
This would require having property files located at:
|
|||||||
|
|
Not sure if this can help you at all but you can specify alternative resource files in the /src/test/resources folder which override the ones in /src/main/resources when running tests only. I define an alternative placeholders.properties file here to specify another db connection to be used by the test phase. |
|||
|
|