I was refactoring some code, when I noticed unit test errors to do with missing methods, as I had forgotten to also refactor my unit tests. These sorts of errors should have been caught at compile time, but `mvn test` was blissfully running the tests anyway.
How can I force `mvn compile` to compile src/test/java/**.java files as well? -- Cheers, Andrew Pennebaker [email protected]
