我是 Maven 新手,想使用 Jacoco Maven 插件来构建我的项目。
我已经建立了一个示例项目,其中 TestNG 是唯一的依赖项。
这是 pom.xml 的一部分:
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.2.201302030002</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
我得到这个错误:
生命周期配置未涵盖插件执行:org.jacoco:jacoco-maven-plugin:0.6.2.201302030002:prepare-agent(执行:默认,阶段:初始化)
我究竟做错了什么 ?干杯