By default, Buildr produces output in slightly different places than Maven's default. For example, it puts test classes in target/test/classes
instead of target/test-classes
, reports in reports/
instead of target/surefire-reports
, and JavaDoc into target/doc
instead of target/site/apidocs
.
Is there a list of all such differences, and how to configure Buildr to use the same output directories as Maven? Would that even be safe to do, e.g., if there is a parallel Maven project that is being migrated from provided that the two never run simultaneously?