Logging using System.out.println is bad. It is not possible to filter and spams the test and production logs. Use java.util.logging (or better slf4j) instead of println for logging. This enables configurable logging and will still keep the project dependency free.