blob: 1621d451b2ed18ba995c10ab54abaa5fcf92f19e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2009, 2010 Mountainminds GmbH & Co. KG and Contributors
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Marc R. Hoffmann - initial API and implementation
$Id: $
-->
<project name="org.jacoco.core.buildhook">
<path id="dependencies">
<path refid="bundle-org.objectweb.asm"/>
</path>
<property name="do.compile" value="true"/>
<property name="do.custompackage" value="true"/>
<property name="do.package" value="true"/>
<target name="custompackage">
<!-- Compile JaCoCo.java with version info included -->
<delete dir="${result.tmp.bundle.classes.dir}" includes="**/JaCoCo.class"/>
<property name="result.tmp.bundle.java.dir" location="${result.tmp.bundle.dir}/java"/>
<mkdir dir="${result.tmp.bundle.java.dir}"/>
<copy todir="${result.tmp.bundle.java.dir}">
<fileset dir="${source.bundle.java.dir}" includes="**/JaCoCo.java"/>
<filterset>
<filter token="qualified.bundle.version" value="${qualified.bundle.version}"/>
<filter token="jacoco.home.url" value="${jacoco.home.url}"/>
</filterset>
</copy>
<javac srcdir="${result.tmp.bundle.java.dir}"
destdir="${result.tmp.bundle.classes.dir}"
debug="true" source="1.5" target="${java.target.version}" includeAntRuntime="no">
</javac>
</target>
</project>