如何在 jacoco 中配置 classDumpDir?
How to configure classDumpDir in jacoco?
我可以通过使用 tcpserver 选项配置 javaagent 来生成 jacoco 报告。但是 dev 类 没有被转储到我的测试项目。
我尝试在 pom.xml
中添加 classDumpDir
<classDumpDir>${project.build.directory}/classes</classDumpDir>
不确定需要指定哪个执行和目标classDumpDir以及要执行的maven命令是什么。
我的目标是使用 classDumpDir 或任何其他选项从远程服务器获取动态生成的开发 类 到我的本地计算机。如果有人可以阐明 pom.xml 部分
那就太好了
Not sure under which execution and goal classDumpDir needs to be specified
classdumpdir
是 JaCoCo Java 代理的一个选项(参见 https://www.jacoco.org/jacoco/trunk/doc/agent.html), from there one can logically assume that it can be specified for prepare-agent
goal. Even without this knowledge and assumption, there is documentation for jacoco-maven-plugin
at https://www.jacoco.org/jacoco/trunk/doc/maven.html , which lists all available goals and their parameters, including classDumpDir
in prepare-agent
at page https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html#classDumpDir
我可以通过使用 tcpserver 选项配置 javaagent 来生成 jacoco 报告。但是 dev 类 没有被转储到我的测试项目。
我尝试在 pom.xml
中添加 classDumpDir <classDumpDir>${project.build.directory}/classes</classDumpDir>
不确定需要指定哪个执行和目标classDumpDir以及要执行的maven命令是什么。
我的目标是使用 classDumpDir 或任何其他选项从远程服务器获取动态生成的开发 类 到我的本地计算机。如果有人可以阐明 pom.xml 部分
那就太好了Not sure under which execution and goal classDumpDir needs to be specified
classdumpdir
是 JaCoCo Java 代理的一个选项(参见 https://www.jacoco.org/jacoco/trunk/doc/agent.html), from there one can logically assume that it can be specified for prepare-agent
goal. Even without this knowledge and assumption, there is documentation for jacoco-maven-plugin
at https://www.jacoco.org/jacoco/trunk/doc/maven.html , which lists all available goals and their parameters, including classDumpDir
in prepare-agent
at page https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html#classDumpDir