(no commit message)
[utils] / build / trailer.xml
index d5082a7ce6403e635cf117a4b93b3b8a562bedef..0692cb9f0de46ff2323a1eb7704268123b11fbf7 100644 (file)
@@ -40,6 +40,9 @@
   <antcall target="test.d">
     <param name="download.dir" value="${test.lib.dir}"/>
   </antcall>
+  <antcall target="ant.d">
+    <param name="download.dir" value="${ant.downloaded.lib.dir}"/>
+  </antcall>
   <antcall target="module.test.deps">
     <param name="download.dir" value="${test.lib.dir}"/>
   </antcall>
 
 <target name="clean-deps" depends="init_directory_properties">
   <delete dir="${external.lib.dir}"/>
+  <mkdir dir="${external.lib.dir}"/>
   <delete dir="${test.lib.dir}"/>
+  <mkdir dir="${test.lib.dir}"/>
+  <delete dir="${ant.downloaded.lib.dir}"/>
+  <mkdir dir="${ant.downloaded.lib.dir}"/>
 </target>
 
 <!-- ============================================================================
 
 <target name="checkstyle" depends="testclasses">
        <checkstyle config="${build.dir}/${checkstyle.rules}"
-               failOnViolation="false" classpathref="module.testbuild.path">
+               failOnViolation="false">
+               <classpath>
+                 <path refid="module.build.path"/>
+               </classpath>
                <fileset dir="${module.source.dir}" includes="**/*.java" />
                <formatter type="plain" />
        </checkstyle>
+       <!--
        <checkstyle config="${build.dir}/${checkstyle.test.rules}"
-               failOnViolation="false" classpathref="module.testbuild.path">
+               failOnViolation="false">
+               <classpath>
+                 <pathelement path="${module.testbuild.path}"/>
+               </classpath>
                <fileset dir="${module.test.dir}" includes="**/*.java" />
                <formatter type="plain" />
        </checkstyle>
+       -->
 </target>
 
 <!-- ============================================================================