Tweak cobertura rules to find additional classes

Without this tweak, it has problems instrumenting nested classes.
With this change, it can instrument them properly.
diff --git a/build.xml b/build.xml
index 219edd6..0a9c8f8 100644
--- a/build.xml
+++ b/build.xml
@@ -241,6 +241,9 @@
     <taskdef classpathref="cobertura.classpath" resource="tasks.properties"/>
     <cobertura-instrument datafile="${build-instrument.dir}/cobertura.ser"
       todir="${build-instrument.dir}">
+      <auxClassPath>
+        <path refid="adaptor.build.classpath" />
+      </auxClassPath>
       <fileset dir="${build-src.dir}"/>
     </cobertura-instrument>
   </target>