Unit tests passing through Maven, but failing through Cobertura: “Expecting a stackmap frame at branch target 65”

前端 未结 2 1602
滥情空心
滥情空心 2021-02-12 15:32

I recently added the Cobertura plugin to my Java/Spring-MVC project. The strange thing is that all my unit tests were passing, and they still pass when Maven does its initial t

相关标签:
2条回答
  • 2021-02-12 15:47

    Of course I find the answer right after asking the question, even though I searched for quite awhile before...

    The problem is that Cobertura has trouble working with Java 1.7. You must add the following line to your pom.xml:

    <argLine>-XX:-UseSplitVerifier</argLine>
    

    That goes in the configuration element. Here is the entire Cobertura section:

         <plugin>
            <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <argLine>-XX:-UseSplitVerifier</argLine>
                    <formats>
                        <format>xml</format>
                    </formats>
                </configuration>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>cobertura</goal>
                        </goals>
                    </execution>
                </executions>
           </plugin>
    

    Now everything works as expected.

    0 讨论(0)
  • 2021-02-12 15:59

    Fixed by using new plugin

                      <plugin>
                            <groupId>org.codehaus.mojo</groupId>
                            <artifactId>cobertura-maven-plugin</artifactId>
                            <version>2.7</version>
                            <configuration>
                                <formats>
                                    <format>xml</format>
                                </formats>
                            </configuration>
                            <executions>
                                <execution>
                                    <phase>package</phase>
                                    <goals>
                                        <goal>cobertura</goal>
                                    </goals>
                                </execution>
                            </executions>
                        </plugin>
    
    0 讨论(0)
提交回复
热议问题