Under the src/main/resources
i have application.xml
and data.sql
files, and under src/test/resources
i have the same files but their content is different. the problem is that when i run my integration test, it processes both files under src/test/resources
and src/main/resources
.
What is the most effective way to make it process only application.xml
and data.sql
contained under src/test/resources
when i execute integration test ?