I am using exec-maven-plugin to execute some specific tests. I want to append the console output of the tests to a file, without hiding the console.
Is there any support provided in maven for the task?
I used maven-antrun-plugin to execute the recorder task before the tests begin. That didn't work.
I used 'tee' command to execute using exec-maven-plugin. That doesn't seem to work either.
I checked using log4j with maven. But since i'm new to log4j logging, i couldn't debug the issue with it.
Is there any other way to do it?