2
我試圖讓scalatest的HTML報告,我發現了很多配置是這樣的:Scalatest HTML報告
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0-M2</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<testFailureIgnore>true</testFailureIgnore>
<filereports>NCXEHLOWFD file/constrained.txt,file/full.txt</filereports>
<xmlreports>xml</xmlreports>
<htmlreports>html/report.html</htmlreports>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
不過的IntelliJ告訴我,xmlreports
和htmlreports
是不允許的,不生成xml或html報告。
任何人都可以提出任何建議嗎? 我會很感激