如果我有一个使用库(jar 文件)的 java 项目,是否可以获得该 jar 中类的代码覆盖率?
这背后的想法是,我想找出项目所依赖的外部库的比例(比如说 spring、hibernate,或者如果它是一个 scala 项目,它可能是 scala jar,为什么不)被实际使用。我什至想象我可以尝试将它们列出并将它们重新捆绑在一个仅包含必要的 .class 文件(例如,使用 apache felix 之类的插件)的单个 jar 中,以获得尽可能小的 jar。我不确定我是否真的想这样做,我知道出于多种原因这可能是一个坏主意,但我认为这是一个实验。
我找不到怎么做,jacoco 只报告了我项目中类文件的覆盖率。也许我做错了什么,我正在使用这样的maven插件:
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.5.6.201201232323</version>
<configuration>
<destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile>
<datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile>
<includes>
<include>**</include>
</includes>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
我尝试更改包含标记,但唯一的效果是限制默认值,它仅包含直接在我的项目中的类文件。
提前致谢 !
在oers的回答后编辑:
我发现了如何使用 ant 和 antrun-plugin 来完成它,虽然它非常复杂,但我在使用 antrun 插件版本时遇到了很多麻烦(无法使最新版本工作,即使是基本任务),我真的很想坚持马文。如果有人知道如何用 je jacoco maven 插件而不是 ant 来做同样的事情,我很感兴趣!
ant 的部分解决方案:实际上 jacoco.exec 文件已经包含对我的外部 jar 类的引用;因此,应该告诉报告任务考虑这些 jar,而不是我认为的运行时阶段。这是我使用的 maven 配置(我在http://intellectualcramps.wordpress.com/2012/03/22/jacoco-tycho-and-coverage-reports/上找到了帮助):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<!--<version>1.7</version>-->
<dependencies>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.ant</artifactId>
<version>0.5.6.201201232323</version>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>20020829</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>jacoco-report</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<taskdef name="jacoco-report"
classname="org.jacoco.ant.ReportTask"
classpathref="maven.plugin.classpath" />
<taskdef classpathref="maven.runtime.classpath"
resource="net/sf/antcontrib/antcontrib.properties" />
<available
file="${project.basedir}/target/jacoco.exec"
property="jacoco.exec.file.exists" />
<echo message="${project.basedir}/target/jacoco.exec" />
<if>
<equals arg1="${jacoco.exec.file.exists}"
arg2="true" />
<then>
<echo message="Executing jacoco report" />
<trycatch>
<try>
<jacoco-report>
<executiondata>
<file
file="${project.basedir}/target/jacoco.exec" />
</executiondata>
<structure name="Minerva">
<classfiles>
<fileset
dir="target/classes" />
<fileset dir="C:/Data/dev/m2Repository/com/groupama/framework/crypt/fwk-cryptage/1.0/">
<include name="**/*.jar"/>
</fileset>
</classfiles>
<sourcefiles
encoding="UTF-8">
<fileset
dir="src/main/java" />
</sourcefiles>
</structure>
<html destdir="${project.basedir}/target/jacoco/report" />
<xml destfile="${project.basedir}/target/jacoco/report/jacoco.xml"/>
</jacoco-report>
</try>
<catch>
<echo>skipping</echo>
</catch>
</trycatch>
</then>
<else>
<echo message="No jacoco.exec file found." />
</else>
</if>
</tasks>
</configuration>
</execution>
</executions>
</plugin>