--- a/build.xml	2017-03-14 12:31:03.000000000 -0700
+++ b/build.xml	2017-08-17 12:14:12.965910677 -0700
@@ -345,7 +345,6 @@
       <pathelement path="${build}/${jar}"/>
       <pathelement path="${test.classes}"/>
       <pathelement path="${build}/${testjar}"/>
-      <pathelement path="lib/clover.jar"/>
       <path refid="test.libs"/>
     </path>
   </target>
@@ -995,7 +994,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>
@@ -1004,7 +1002,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>
@@ -1121,27 +1119,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"/>
@@ -1232,7 +1209,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>
@@ -1247,8 +1224,6 @@
       <fileset dir="${build}"/>
     </delete>
     <delete quiet="true" includeEmptyDirs="true">
-      <fileset dir=".clover"/>
-      <fileset dir="build.clover" />
       <fileset dir="${javadoc}"/>
       <fileset dir="." includes="*~,**/*~,build.number,native/libffi/configure"/>
     </delete>
@@ -1343,4 +1318,4 @@
       <arg value="-Dgpg.useagent=true"/>
     </artifact:mvn>
   </target>
-</project>
\ No newline at end of file
+</project>