The Junits I have in my project need to load property files from the classpath. How can I specify the directory of those property files so that Maven will set that in the cl
You can also add new test resource folders.
${project.basedir}/src/test/resources
${project.basedir}/src/test/something_else
The first path, src/test/resources, is the default. Assuming you still want the default path to be used, make sure it's included. (The testResources tag overwrites your defaults, so if you don't include the default path explicitly, it will stop being used.)