I\'m using the Apache Derby embedded database for unit testing in a Maven project. Unfortunately whenever I run the test I end up with the derby.log file in the
derby.log
Include the following in your derby.properties file:
derby.stream.error.file=/dev/null
( or
derby.stream.error.file=\\Device\\Null
on Windows)