4

私はテストケースを書いた新しいCoberturaです。コーディングでラムダ式を使用していますが、この問題を解決する方法でエラーが発生しています。

Google で検索したところ、Jacoco が Java8 をサポートしていることを知りました。

しかし、Jacoco プラグインを Cobertura プラグインとして挿入する方法がわかりません。

私のスプリング ブート プロジェクト pom.xml の Cobertura プラグインは次のようになります。

<plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.7</version>
                <configuration>
                    <!-- <check> <branchRate>85</branchRate> <lineRate>85</lineRate> <haltOnFailure>true</haltOnFailure> 
                        <totalBranchRate>85</totalBranchRate> <totalLineRate>85</totalLineRate> <packageLineRate>85</packageLineRate> 
                        <packageBranchRate>85</packageBranchRate> </check> -->
                    <formats>
                        <format>xml</format>
                    </formats>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>cobertura</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>

ありがとう。

4

1 に答える 1