Intellij IDEA:此处不允许元素forkCount

时间:2018-11-03 17:33:15

标签: intellij-idea maven-surefire-plugin

我有一个使用maven-surefire-plugin的Java项目,如下所示:

<plugin>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
        <argLine>-Xmx512m -XX:MetaspaceSize=256m</argLine>
        <forkCount>1C</forkCount>
        <reuseForks>false</reuseForks>
        <disableXmlReport>false</disableXmlReport>
    </configuration>
</plugin>

该项目正在运行,并且经过了良好的测试,但是Intellij报告了 forkCount reuseForks fork forkCount此处不允许。。为什么会发生这种情况以及如何解决?

0 个答案:

没有答案