我正在使用 maven 3.0.4 JRE 1.7.0_09
,. 当我使用mvn clean install
所有测试通过并且一切看起来都很好时 - 这是我的万能插件配置:
<plugin>
<version>2.12.4</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- -XX:-UseSplitVerifier is for java 7 -->
<argLine>-XX:-UseSplitVerifier</argLine>
</configuration>
</plugin>
现在,当我mvn cobertura:cobertura
的一些测试出现这样的错误时:
Expecting a stackmap frame at branch target ....
还有一些错误让我明白它没有使用 JRE7 运行(例如,Encountered " "|" "| "" at line...
)
这是我的 cobertura 插件配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
报告是:
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
</plugins>
</reporting>
我看到很多讨论这个问题的线程<argLine>-XX:-UseSplitVerifier</argLine>
,解决方案是添加这一行,但它没有帮助。
我在这里做错了什么?