When running tests in maven it's common usage to have configuration files that should be filtered.
When filtering "normal" resources the syntax is the following :
... ... ${project.basedir}/src/main/resources true
Whereas when filtering test resources the syntax is following :
... ... ${project.basedir}/src/test/resources true
Otherwise your test resources will not be filtered
This comment has been removed by the author.
ReplyDeleteSome mistakes (typo) in the tags :
ReplyDeleteIn place of 'testresources' you should write 'testResources'
In place of 'testresource' you should write 'testResource'
Thanks !