mvn site
コマンドで魅力レポートを作成中にエラーが発生しました。
非ラテン文字は「????」で表されます。.html レポートでは、/allure-reports フォルダー内の .xml ファイルでは文字が適切にエンコードされています。
Surefire-plugin セクションは次のようになります。コマンドラインで「mvn clean install site」を実行するときも、UTF-8 キーを使用します。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<argLine>-javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${version.aspectj}/aspectjweaver-${version.aspectj}.jar -Dfile.encoding=UTF-8</argLine>
<argLine>-Dfile.encoding=UTF-8</argLine>
<properties>
<property>
<name>listener</name>
<value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
</property>
<!--<systemPropertyVariables>-->
<!--<browser_type>${browser_type}</browser_type>-->
<!--</systemPropertyVariables>-->
</properties>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${version.aspectj}</version>
</dependency>
</dependencies>
</plugin>