Summary
My JUnit tests are not finding the files they require during execution. I\'m using Maven for dependency management and compilation.
You know that Maven is based on the Convention over Configuration pardigm? so you shouldn't configure things which are the defaults.
All that stuff represents the default in Maven. So best practice is don't define it it's already done.
target
target/classes
target/test-classes
src/main/java
src/test/java
src/main/resources
src/test/resources