(no commit message)
[utils] / build / trailer.xml
index 22b33953ed7dd4bdcbd974870eab90ba9b434f81..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>
 
 <!-- ============================================================================
        <javadoc packagenames="*" author="true" version="true" private="yes"
                source="${javac.source}" doclet="com.tarsec.javadoc.pdfdoclet.PDFDoclet"
                docletpathref="pdfdoclet.path"
+               classpath="${module.classpath}"
+               sourcepath="${module.source.dir}"
                additionalparam="-pdf ${module.pdfdoc.dir}/${module.name}.pdf">
-               <fileset dir="${module.source.dir}">
+               <!-- fileset dir="${module.source.dir}">
                        <include name="**/*.java" />
-               </fileset>
+               </fileset -->
        </javadoc>
        <echo
                message="Unfortuantely, this target will have generated some errors but the pdf will still look fine" />
                docletpathref="doccheck.path" 
                classpath="${module.classpath}"
                sourcepath="${module.source.dir}">
-               <!-- fileset dir="${module.source.dir}">
-                       <include name="**/*.java" />
-               </fileset -->
        </javadoc>
 </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>
 
 <!-- ============================================================================