annotate jacoco-ant.xml @ 41:139a3611ae99

CM-127: Move castor-ant to develkit and teach jacoco how to instrument non-groovy projects.
author smith@nwoca.org
date Tue, 07 Jun 2011 18:08:47 -0400
parents 0cbc383e341b
children c1619b87800e
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}"/>
41
139a3611ae99 CM-127: Move castor-ant to develkit and teach jacoco how to instrument non-groovy projects.
smith@nwoca.org
parents: 31
diff changeset
40 <var name="runmain.jvmargs.jacoco" value="${runmain.jvmargs}"/>
139a3611ae99 CM-127: Move castor-ant to develkit and teach jacoco how to instrument non-groovy projects.
smith@nwoca.org
parents: 31
diff changeset
41 <var name="runmain.jvmargs" value="${jacoco.coverage.agent} ${runmain.jvmargs.jacoco}"/>
139a3611ae99 CM-127: Move castor-ant to develkit and teach jacoco how to instrument non-groovy projects.
smith@nwoca.org
parents: 31
diff changeset
42 <echoproperties prefix="jacoco"/>
139a3611ae99 CM-127: Move castor-ant to develkit and teach jacoco how to instrument non-groovy projects.
smith@nwoca.org
parents: 31
diff changeset
43 <echoproperties prefix="runmain"/>
27
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
44 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
45
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
46 <target name="coverage.xml"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
47 description="Generates an XML converage report."
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
48 depends="-check.jacoco,project.init"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
49 if="jacoco.installed">
31
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
50 <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
51 <then>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
52 <mkdir dir="${jacoco.report.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
53 <jacoco:report>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
54 <executiondata>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
55 <file file="${jacoco.data.file}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
56 </executiondata>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
57 <structure name="${ivy.project.module}">
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
58 <classfiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
59 <fileset dir="${build.classes.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
60 </classfiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
61 <sourcefiles encoding="UTF-8">
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
62 <fileset dir="${src.dir}"/>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
63 </sourcefiles>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
64 </structure>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
65 <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
66 </jacoco:report>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
67 </then>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
68 <else>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
69 <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
70 </else>
0cbc383e341b TL-34: Handle case of missing coverage data file under sonar
smith@nwoca.org
parents: 27
diff changeset
71 </if>
27
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
72
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
73 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
74
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
75 <target name="coverage.html"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
76 description="Generates an HTML converage report."
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
77 depends="-check.jacoco"
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
78 if="jacoco.installed">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
79 <mkdir dir="${jacoco.report.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
80 <jacoco:report>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
81 <executiondata>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
82 <file file="${jacoco.data.file}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
83 </executiondata>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
84 <structure name="${ivy.project.module}">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
85 <classfiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
86 <fileset dir="${build.classes.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
87 </classfiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
88 <sourcefiles encoding="UTF-8">
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
89 <fileset dir="${src.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
90 </sourcefiles>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
91 </structure>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
92 <html destdir="${jacoco.report.dir}"/>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
93 </jacoco:report>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
94 </target>
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
95
ea29594bb799 TL-34: Switch to Jacoco for coverage analysis.
smith@nwoca.org
parents:
diff changeset
96 </project>