I have a lot of student's code to test, and their code is structured like this:
Project_Dir -> src -> edu -> collegeName-> courseName -> assignmentName -> (their classes here)
and for tests:
Project_Dir -> src -> edu -> collegeName-> courseName -> assignmentName -> tests -> (their tests here)
You'll notice that this does not follow the typical convention of:
${basedir}/src/main/java
and
${basedir}/src/test
When I try to test their code with maven test, it can't find any of their code (sourcecode or tests)
Is there some commandline argument I can use to tell maven to look in the correct place for their source code and tests? Or is there some way of dropping in a modified POM file to tell maven the same thing?