我正在为我的项目使用SONAR。当我执行mvn sonar:sonar
时,它会抛出
java.lang.VerifyError: Instruction type does not match stack map in method
这是在我将JDK更新为1.7.0_09并将其更新为3.0.4之后。
请帮助我。
答案 0 :(得分:1)
请在maven的setting.xml中配置服务器。
<强>更新强>
添加您的setting.xml
maven
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.jdbc.url>jdbc:postgresql://localhost/sonar</sonar.jdbc.url>
<sonar.jdbc.driver>org.postgresql.Driver</sonar.jdbc.driver>
<sonar.jdbc.username>user</sonar.jdbc.username>
<sonar.jdbc.password>password</sonar.jdbc.password>
<!-- SERVER ON A REMOTE HOST -->
<sonar.host.url>http://localhost:9000</sonar.host.url>
</properties>
</profile>