私は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レポートは生成されないと言っています。
誰かが何か提案できますか?とてもありがたいです