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.
我有一个带有各种子模块的父 pom 项目。我想获得单元测试结果的报告,但使用 surfire 插件,我得到每个模块的独立结果。
我的意思是,如果我执行:
mvn surefire-report:report
从父pom所在的父目录中,它为每个子项目创建一个surefire-report.html,但我想要的只是一个包含所有子项目结果的html。
有没有办法自动实现这一点?使用surefire或其他插件。
要创建,aggregate report请尝试在parent project.
aggregate report
parent project
mvn surefire-report:report -Daggregate=true
我希望这可能会有所帮助。