forked from Riverside-Software/pct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonar.xml
31 lines (28 loc) · 977 Bytes
/
sonar.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<project name="PCT" default="init-sonar" xmlns:jacoco="antlib:org.jacoco.ant">
<target name="init-sonar">
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" />
<jacoco:report>
<executiondata>
<fileset dir="profiler" includes="*.exec" />
</executiondata>
<structure name="PCT">
<classfiles>
<fileset dir="build/java" />
</classfiles>
<sourcefiles encoding="iso8859-1">
<fileset dir="src/java" />
</sourcefiles>
</structure>
<xml destFile="profiler/report.xml" />
</jacoco:report>
<touch file="dictdb.df" />
<mkdir dir="profiler/progress" />
<unzip src="oe-profiler-data-11.7-Win.zip" dest="profiler/progress">
<flattenmapper />
</unzip>
<unzip src="oe-profiler-data-12.2-Win.zip" dest="profiler/progress" overwrite="true">
<flattenmapper />
</unzip>
</target>
</project>