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 中一个接一个地运行测试相比,我需要一种方法来设置不同的 log4j/logback 设置。有没有办法做到这一点?
您可以将surefire 配置为使用不同的记录器设置文件。这将被 Eclipse 忽略。
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dlogback.configuration=[wherever]</argLine> </configuration> </plugin>