aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.examples
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2014-10-10 17:30:12 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2014-10-10 17:30:12 +0200
commit27b5c3382007ee428340f77893755c24da305522 (patch)
treec55abd23357264860f239a9d196b1497eac213fa /org.jacoco.examples
parentd03b676ebb2d28b0910aac0a6c45a7337a67f4cb (diff)
downloadjacoco-27b5c3382007ee428340f77893755c24da305522.tar.gz
Extend offline instrumentation example to non-class file resources.
Non-class files are copied as such, so we better include them instead of manually copy missing resources. Hint by Ville Oikarinen to improve Ant examples.
Diffstat (limited to 'org.jacoco.examples')
-rw-r--r--org.jacoco.examples/build/build-offline.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.jacoco.examples/build/build-offline.xml b/org.jacoco.examples/build/build-offline.xml
index 907cfacc..24ede728 100644
--- a/org.jacoco.examples/build/build-offline.xml
+++ b/org.jacoco.examples/build/build-offline.xml
@@ -43,7 +43,7 @@
<target name="instrument" depends="compile">
<!-- Step 2: Instrument class files -->
<jacoco:instrument destdir="${result.classes.instr.dir}">
- <fileset dir="${result.classes.dir}" includes="**/*.class" />
+ <fileset dir="${result.classes.dir}" />
</jacoco:instrument>
</target>