诱惑报告的编码不正确

时间:2015-02-03 10:32:30

标签: maven allure

使用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>

1 个答案:

答案 0 :(得分:1)

1.4.4版中的问题。已修复1.4.5

您可以在此处找到有关版本的所有信息https://github.com/allure-framework/allure-core/releases