Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mvn testでテストを実行するときは、何か問題が発生しない限り、コンソールをできるだけ静かにしたいと思います。繰り返しになりますが、Eclipseでテストを作成しているとき(つまり、Eclipse内で単一のjunitテストを実行しているとき)、それらがかなり冗長であっても問題ありません。
mvn test
したがって、すべてのテストを確実に実行する場合は、Eclipseで1つずつ実行する場合とは異なるlog4j/logback設定を設定する方法が必要になります。これを達成する方法はありますか?
別のロガー設定ファイルを使用するようにsurefireを構成できます。これはEclipseでは無視されます。
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dlogback.configuration=[wherever]</argLine> </configuration> </plugin>