--- a/build.xml 2017-08-18 11:11:31.715877910 -0700
+++ b/build.xml 2017-08-18 11:12:50.415581646 -0700
@@ -320,7 +320,6 @@
<pathelement path="${build}/${jar}"/>
<pathelement path="${test.classes}"/>
<pathelement path="${build}/${testjar}"/>
- <pathelement path="lib/clover.jar"/>
<path refid="test.libs"/>
</path>
</target>
@@ -910,7 +909,6 @@
<copy todir="${build}/jws" file="${build}/${jar}"/>
<copy todir="${build}/jws" file="${build}/${testjar}"/>
<copy todir="${build}/jws" file="lib/junit.jar"/>
- <copy todir="${build}/jws" file="lib/clover.jar"/>
<jar jarfile="${build}/jws/jnidispatch.jar">
<fileset dir="${build.native}" includes="*jnidispatch.*"/>
</jar>
@@ -919,7 +917,7 @@
<!-- javaws -viewer (security tab, import CSR as CA-->
<!--
<signjar alias="jna" keystore="jna.keystore" storepass="jnadev" lazy="true">
- <fileset dir="${build}/jws" includes="${jar},${testjar},junit.jar,jnidispatch.jar,clover.jar"/>
+ <fileset dir="${build}/jws" includes="${jar},${testjar},junit.jar,jnidispatch.jar"/>
</signjar>
-->
</target>
@@ -1032,27 +1030,6 @@
</subant>
</target>
- <target name="with.clover" description="Enable code coverage for tests">
- <taskdef resource="cloverlib.xml" classpath="lib/clover.jar"/>
- <property name="clover" value="true"/>
- <property name="build" value="build.clover"/>
- <clover-setup/>
- </target>
-
- <target name="clover" depends="with.clover,test"
- description="Generate test code coverage reports">
- <property name="reports.clover" value="${reports}/clover"/>
- <mkdir dir="${reports.clover}"/>
- <clover-report>
- <current outfile="${reports.clover}" title="clover">
- <fileset dir="." includes="**/*.java" />
- <testresults dir="${results.junit}" includes="TEST-*.xml"/>
- <format type="html"/>
- </current>
- </clover-report>
- <echo>Reports generated in ${reports.clover}</echo>
- </target>
-
<target name="javadoc" depends="-setup">
<path id="javadoc.src.path">
<path refid="src.path"/>
@@ -1142,7 +1119,7 @@
<!-- Full sources required to build and test everything -->
<zip zipfile="${dist}/src-full.zip">
<zipfileset src="${dist}/src.zip"/>
- <zipfileset dir="lib" includes="junit.jar,clover.jar" prefix="lib"/>
+ <zipfileset dir="lib" includes="junit.jar" prefix="lib"/>
<zipfileset dir="." includes=".classpath,.project"/>
<zipfileset dir="${native}" includes="libffi,libffi/**/*" prefix="native"/>
</zip>
@@ -1157,7 +1134,6 @@
<fileset dir="${build}"/>
</delete>
<delete quiet="true" includeEmptyDirs="true">
- <fileset dir=".clover"/>
<fileset dir="${javadoc}"/>
<fileset dir="." includes="*~,**/*~,build.number,native/libffi/configure"/>
</delete>