<?xml version="1.0" encoding="utf-8"?>
<project name="plate_id_sample_service" xmlns:jacoco="antlibrg.jacoco.ant"> <taskdef uri="antlibrg.jacoco.ant" resource="org/jacoco/ant/antlib.xml"> <classpath path="/Users/lileilei/Downloads/jacoco-0.8.5/lib/jacocoant.jar"/>
</taskdef>
<target name="report">
<jacoco:report>
<executiondata>
<file file="jacoco.exe"/>
</executiondata>
<structure name="pan"> <!-- 可以按软件功能模块设置多个group,方便在report中查看 -->
<group name="pan">
<classfiles> <!--.class文件路径,可以放在客户端-->
<fileset dir="/Users/lileilei/Desktop/plan/target/classes"/> </classfiles>
<sourcefiles encoding="utf-8"> <!--源代码路径,可以放在客户端-->
<fileset dir="/Users/lileilei/Desktop/plan/src/main/java" /> </sourcefiles>
</group>
</structure>
<!-- report文件保存地址 -->
<html destdir="report" encoding="utf-8"/>
</jacoco:report>
</target>
</project>
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) | Powered by Discuz! X3.2 |