各テストの時間測定値を出力したい。SBT を使用してそれを行う方法があります - http://www.scalatest.org/user_guide/using_scalatest_with_sbt
ただし、このページを見ると、http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin pom.xml に何を追加すればよいかわかりません。そのため、すべてのテストでその期間が表示されます。
チームメイトが特別なフラグを付けて maven を実行する必要がないように、pom.xml 内でこれを構成したいと考えています。これが可能かどうかはわかりませんので、否定的な答えでも構いません:)
以下は、ScalaTest を構成する pom.xml の一部です。
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>ProductionCommons.txt</filereports>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>