annotate jacoco-ant.xml @ 31:0cbc383e341b

TL-34: Handle case of missing coverage data file under sonar
author smith@nwoca.org
date Tue, 12 Apr 2011 16:49:39 -0400
parents ea29594bb799
children 139a3611ae99
rev   line source
27
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
2 <project name="jacoco-project-tasks" default="" basedir="."
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
3 xmlns:ivy="antlib:fr.jayasoft.ivy.ant"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
4 xmlns:ssdt="http://www.ssdt-ohio.org/ant/common"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
5 xmlns:jacoco="antlib:org.jacoco.ant">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
6
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
7 <description>jacoco Ant tasks</description>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
8
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
9 <property name="jacoco.report.dir" value="build/jacoco"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
10 <property name="jacoco.data.file" value="build/jacoco/jacoco.exec"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
11
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
12 <target name="-check.jacoco" depends="project.init,ivy-info">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
13 <property name="jacoco.ant.jar.file"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
14 value="${user.home.ant.lib}/jacoco-ant.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
15 <property name="jacoco.agent.jar.file"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
16 value="${ssdt.devel.kit}/jacoco-agent.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
17 <property name="ssdt.jacoco.ant.jar.src"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
18 value="http://ivy.ssdt.nwoca.org/repository/jacoco/jacocoant.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
19 <property name="ssdt.jacoco.agent.jar.src"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
20 value="http://ivy.ssdt.nwoca.org/repository/jacoco/jacocoagent.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
21 <ssdt:fetch dest="${jacoco.ant.jar.file}"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
22 src="${ssdt.jacoco.ant.jar.src}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
23 <ssdt:fetch dest="${jacoco.agent.jar.file}"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
24 src="${ssdt.jacoco.agent.jar.src}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
25 <property name="jacoco.installed" value="true"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
26 <property name="jacoco.dir" value="${build.dir}/jacoco"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
27
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
28 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
29
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
30 <target name="with.coverage" depends="-check.jacoco" if="jacoco.installed">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
31 <property name="coverage.run.with.jacoco" value="true"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
32 <mkdir dir="${jacoco.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
33 <copy file="${jacoco.agent.jar.file}" tofile="${jacoco.dir}/jacocoagent.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
34 <property name="_jacoco.agentFile" value="${jacoco.dir}/jacocoagent.jar"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
35 <taskdef uri="antlib:org.jacoco.ant"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
36 classpath="${jacoco.ant.jar.file}"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
37 resource="org/jacoco/ant/antlib.xml"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
38 <jacoco:agent property="jacoco.coverage.agent"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
39 destfile="${jacoco.data.file}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
40 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
41
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
42 <target name="coverage.xml"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
43 description="Generates an XML converage report."
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
44 depends="-check.jacoco,project.init"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
45 if="jacoco.installed">
31
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
46 <if><available file="${jacoco.data.file}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
47 <then>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
48 <mkdir dir="${jacoco.report.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
49 <jacoco:report>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
50 <executiondata>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
51 <file file="${jacoco.data.file}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
52 </executiondata>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
53 <structure name="${ivy.project.module}">
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
54 <classfiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
55 <fileset dir="${build.classes.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
56 </classfiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
57 <sourcefiles encoding="UTF-8">
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
58 <fileset dir="${src.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
59 </sourcefiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
60 </structure>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
61 <xml destfile="${jacoco.report.dir}/jacoco.xml"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
62 </jacoco:report>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
63 </then>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
64 <else>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
65 <echo message="Coverage data not available. coverage.xml skipped"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
66 </else>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
67 </if>
27
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
68
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
69 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
70
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
71 <target name="coverage.html"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
72 description="Generates an HTML converage report."
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
73 depends="-check.jacoco"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
74 if="jacoco.installed">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
75 <mkdir dir="${jacoco.report.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
76 <jacoco:report>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
77 <executiondata>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
78 <file file="${jacoco.data.file}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
79 </executiondata>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
80 <structure name="${ivy.project.module}">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
81 <classfiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
82 <fileset dir="${build.classes.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
83 </classfiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
84 <sourcefiles encoding="UTF-8">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
85 <fileset dir="${src.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
86 </sourcefiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
87 </structure>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
88 <html destdir="${jacoco.report.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
89 </jacoco:report>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
90 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
91
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
92 </project>